From eee154da0c324a73e8be72a76a7f13e0fd9bf6e7 Mon Sep 17 00:00:00 2001 From: Pranay Date: Tue, 25 Mar 2025 14:51:01 +0530 Subject: [PATCH] New Module Documents and Fix Recruitment --- addons_extensions/documents/__init__.py | 5 + addons_extensions/documents/__manifest__.py | 94 + .../documents/controllers/__init__.py | 5 + .../documents/controllers/documents.py | 695 +++ .../documents/controllers/home.py | 86 + .../documents/controllers/portal.py | 19 + .../documents/data/digest_data.xml | 23 + .../data/documents_document_data.xml | 43 + .../documents/data/documents_tag_data.xml | 127 + .../documents/data/documents_tour.xml | 10 + .../documents/data/files/Mails_inbox.pdf | Bin 0 -> 235806 bytes .../documents/data/files/mail.png | Bin 0 -> 46675 bytes .../documents/data/files/mail_thumbnail.png | Bin 0 -> 18948 bytes .../documents/data/ir_actions_server_data.xml | 106 + .../data/ir_config_parameter_data.xml | 11 + .../data/mail_activity_type_data.xml | 19 + .../documents/data/mail_template_data.xml | 252 + .../demo/documents_document_demo.xml | 122 + .../files/Commercial-Tenancy-Agreement.pdf | Bin 0 -> 142753 bytes .../documents/demo/files/Invoice2018_0007.pdf | Bin 0 -> 37899 bytes .../documents/demo/files/city.jpg | Bin 0 -> 141295 bytes .../demo/files/invoice_azure_interior.pdf | Bin 0 -> 47172 bytes .../demo/files/invoice_openvalue.pdf | Bin 0 -> 32525 bytes addons_extensions/documents/demo/files/la.jpg | Bin 0 -> 234135 bytes .../documents/demo/files/people.jpg | Bin 0 -> 146971 bytes .../documents/demo/files/sorry_netsuite.jpg | Bin 0 -> 28775 bytes addons_extensions/documents/i18n/ar.po | 3945 ++++++++++++ addons_extensions/documents/i18n/az.po | 2878 +++++++++ addons_extensions/documents/i18n/bg.po | 3695 ++++++++++++ addons_extensions/documents/i18n/bs.po | 2871 +++++++++ addons_extensions/documents/i18n/ca.po | 3743 ++++++++++++ addons_extensions/documents/i18n/cs.po | 3717 ++++++++++++ addons_extensions/documents/i18n/da.po | 2884 +++++++++ addons_extensions/documents/i18n/de.po | 4000 ++++++++++++ .../documents/i18n/documents.pot | 3651 +++++++++++ addons_extensions/documents/i18n/el.po | 2882 +++++++++ addons_extensions/documents/i18n/es.po | 3987 ++++++++++++ addons_extensions/documents/i18n/es_419.po | 3989 ++++++++++++ addons_extensions/documents/i18n/et.po | 3754 ++++++++++++ addons_extensions/documents/i18n/fa.po | 2889 +++++++++ addons_extensions/documents/i18n/fi.po | 3752 ++++++++++++ addons_extensions/documents/i18n/fr.po | 3944 ++++++++++++ addons_extensions/documents/i18n/fr_BE.po | 2866 +++++++++ addons_extensions/documents/i18n/gu.po | 2873 +++++++++ addons_extensions/documents/i18n/he.po | 3708 ++++++++++++ addons_extensions/documents/i18n/hi.po | 3656 +++++++++++ addons_extensions/documents/i18n/hr.po | 3694 ++++++++++++ addons_extensions/documents/i18n/hu.po | 2885 +++++++++ addons_extensions/documents/i18n/id.po | 3969 ++++++++++++ addons_extensions/documents/i18n/is.po | 2873 +++++++++ addons_extensions/documents/i18n/it.po | 3940 ++++++++++++ addons_extensions/documents/i18n/ja.po | 3891 ++++++++++++ addons_extensions/documents/i18n/km.po | 2871 +++++++++ addons_extensions/documents/i18n/ko.po | 3897 ++++++++++++ addons_extensions/documents/i18n/lb.po | 2869 +++++++++ addons_extensions/documents/i18n/lt.po | 2892 +++++++++ addons_extensions/documents/i18n/mn.po | 3698 ++++++++++++ addons_extensions/documents/i18n/nb.po | 2882 +++++++++ addons_extensions/documents/i18n/nl.po | 3994 ++++++++++++ addons_extensions/documents/i18n/pl.po | 3725 ++++++++++++ addons_extensions/documents/i18n/pt.po | 2887 +++++++++ addons_extensions/documents/i18n/pt_BR.po | 3981 ++++++++++++ addons_extensions/documents/i18n/ro.po | 3709 ++++++++++++ addons_extensions/documents/i18n/ru.po | 3483 +++++++++++ addons_extensions/documents/i18n/sk.po | 2886 +++++++++ addons_extensions/documents/i18n/sl.po | 3689 +++++++++++ addons_extensions/documents/i18n/sr@latin.po | 3613 +++++++++++ addons_extensions/documents/i18n/sv.po | 3734 ++++++++++++ addons_extensions/documents/i18n/th.po | 3922 ++++++++++++ addons_extensions/documents/i18n/tr.po | 3737 ++++++++++++ addons_extensions/documents/i18n/uk.po | 3727 ++++++++++++ addons_extensions/documents/i18n/vi.po | 3955 ++++++++++++ addons_extensions/documents/i18n/zh_CN.po | 3887 ++++++++++++ addons_extensions/documents/i18n/zh_TW.po | 3888 ++++++++++++ .../documents/models/__init__.py | 23 + .../documents/models/documents_access.py | 41 + .../documents/models/documents_document.py | 2060 +++++++ .../documents/models/documents_mixin.py | 143 + .../documents/models/documents_redirect.py | 29 + .../documents/models/documents_share.py | 0 .../documents/models/documents_tag.py | 48 + .../models/documents_unlink_mixin.py | 26 + .../documents/models/ir_attachment.py | 87 + .../documents/models/ir_binary.py | 31 + .../documents/models/mail_activity.py | 99 + .../documents/models/mail_activity_type.py | 13 + .../documents/models/res_config_settings.py | 15 + .../documents/models/res_partner.py | 48 + .../documents/models/res_users.py | 13 + .../documents/security/ir.model.access.csv | 19 + .../documents/security/security.xml | 132 + .../documents/static/description/icon.png | Bin 0 -> 2013 bytes .../documents/static/description/icon.svg | 1 + .../src/attachments/attachment_model_patch.js | 37 + .../src/attachments/document_file_viewer.js | 108 + .../src/attachments/document_file_viewer.xml | 28 + .../static/src/attachments/models.d.ts | 5 + .../src/components/documents_breadcrumbs.js | 10 + .../src/components/documents_breadcrumbs.xml | 13 + .../documents_access_expiration_date_btn.js | 43 + .../documents_access_expiration_date_btn.xml | 16 + .../documents_access_settings.js | 67 + .../documents_access_settings.xml | 43 + .../documents_member_invite.js | 264 + .../documents_member_invite.xml | 83 + .../documents_partner_access.js | 47 + .../documents_partner_access.xml | 70 + .../documents_permission_panel.js | 277 + .../documents_permission_panel.xml | 77 + .../documents_permission_select.js | 74 + .../documents_permission_select.xml | 32 + .../documents_remove_partner_button.js | 15 + .../documents_remove_partner_button.xml | 26 + .../static/src/core/document_model.js | 19 + .../static/src/core/document_service.js | 303 + .../documents/static/src/core/router.js | 16 + .../static/src/core/store_service_patch.js | 23 + .../static/src/img/documents-paperless.png | Bin 0 -> 15397 bytes .../static/src/js/tours/documents.js | 144 + .../static/src/model/sample_server.js | 18 + .../pdf_exit_dialog/pdf_exit_dialog.js | 32 + .../pdf_exit_dialog/pdf_exit_dialog.xml | 21 + .../pdf_group_name/pdf_group_name.js | 54 + .../pdf_group_name/pdf_group_name.scss | 37 + .../pdf_group_name/pdf_group_name.xml | 17 + .../owl/components/pdf_manager/pdf_manager.js | 1474 +++++ .../components/pdf_manager/pdf_manager.scss | 213 + .../components/pdf_manager/pdf_manager.xml | 152 + .../src/owl/components/pdf_page/pdf_page.js | 136 + .../src/owl/components/pdf_page/pdf_page.scss | 96 + .../src/owl/components/pdf_page/pdf_page.xml | 29 + .../documents_access_settings.js | 9 + .../documents_access_settings.xml | 9 + .../documents_permission_panel.js | 16 + .../documents_permisssion_panel.xml | 15 + .../static/src/portal_webclient/main.js | 5 + .../src/portal_webclient/portal_webclient.js | 30 + .../src/portal_webclient/portal_webclient.xml | 9 + .../views/documents_controller_mixin.xml | 13 + .../src/scss/documents.variables.dark.scss | 8 + .../static/src/scss/documents.variables.scss | 29 + .../src/scss/documents_kanban_view.scss | 265 + .../src/scss/documents_public_pages.scss | 213 + .../static/src/scss/documents_views.scss | 176 + .../activity/documents_activity_controller.js | 78 + .../documents_activity_controller.xml | 9 + .../activity/documents_activity_model.js | 9 + .../activity/documents_activity_renderer.js | 28 + .../activity/documents_activity_renderer.xml | 16 + .../views/activity/documents_activity_view.js | 18 + .../chatter/documents_chatter_overlay.scss | 19 + .../chatter/documents_chatter_overlay.xml | 17 + .../src/views/cog_menu/documents_cog_menu.js | 46 + .../cog_menu/documents_cog_menu_group.js | 6 + .../views/cog_menu/documents_cog_menu_item.js | 54 + .../cog_menu/documents_cog_menu_item.xml | 8 + .../documents_cog_menu_item_archive.js | 26 + .../documents_cog_menu_item_configure.js | 42 + .../documents_cog_menu_item_details.js | 28 + .../documents_cog_menu_item_download.js | 29 + .../documents_cog_menu_item_rename.js | 27 + .../cog_menu/documents_cog_menu_item_share.js | 29 + .../documents_cog_menu_item_shortcut.js | 36 + .../cog_menu/documents_cog_menu_item_star.js | 52 + .../documents_cog_menu_pin_actions.js | 65 + .../documents_cog_menu_pin_actions.xml | 18 + .../src/views/documents_controller_mixin.xml | 49 + .../documents_folder_many2one.js | 28 + .../static/src/views/documents_model_mixin.js | 375 ++ .../documents_type_icon.js | 15 + .../documents_type_icon.scss | 4 + .../documents_type_icon.xml | 16 + .../src/views/form/folder_form_controller.js | 82 + .../static/src/views/form/folder_form_view.js | 12 + .../views/helper/documents_action_helper.js | 82 + .../views/helper/documents_action_helper.xml | 21 + .../src/views/helper/documents_drop_zone.js | 90 + .../src/views/helper/documents_drop_zone.xml | 22 + .../src/views/helper/documents_file_viewer.js | 79 + .../views/helper/documents_file_viewer.xml | 16 + .../helper/documents_pdf_thumbnail_service.js | 105 + .../documents/static/src/views/hooks.js | 602 ++ .../kanban/documents_kanban_arch_parser.js | 9 + .../views/kanban/documents_kanban_compiler.js | 84 + .../kanban/documents_kanban_controller.js | 66 + .../kanban/documents_kanban_controller.xml | 19 + .../views/kanban/documents_kanban_model.js | 52 + .../views/kanban/documents_kanban_record.js | 180 + .../views/kanban/documents_kanban_renderer.js | 209 + .../kanban/documents_kanban_renderer.xml | 89 + .../src/views/kanban/documents_kanban_view.js | 26 + .../src/views/list/document_count_field.js | 24 + .../views/list/documents_list_controller.js | 91 + .../views/list/documents_list_controller.xml | 21 + .../src/views/list/documents_list_model.js | 9 + .../src/views/list/documents_list_renderer.js | 215 + .../views/list/documents_list_renderer.xml | 78 + .../list/documents_list_renderer_checkbox.js | 22 + .../src/views/list/documents_list_view.js | 24 + .../views/search/documents_control_panel.js | 353 ++ .../views/search/documents_control_panel.scss | 13 + .../views/search/documents_control_panel.xml | 155 + .../views/search/documents_search_model.js | 385 ++ .../views/search/documents_search_panel.js | 407 ++ .../views/search/documents_search_panel.scss | 31 + .../views/search/documents_search_panel.xml | 128 + .../src/web/activity/activity_menu_patch.js | 12 + .../src/web/activity/activity_menu_patch.xml | 11 + .../src/web/activity/activity_model_patch.js | 13 + .../src/web/documents_domain_selector.js | 19 + .../web/error_dialog/error_dialog_patch.js | 66 + .../web/error_dialog/error_dialog_patch.xml | 19 + .../static/tests/documents_activity_tests.js | 225 + .../tests/documents_kanban_mobile_tests.js | 531 ++ .../static/tests/documents_kanban_tests.js | 5367 +++++++++++++++++ .../tests/documents_pdf_manager_tests.js | 595 ++ .../documents_systray_activity_menu_tests.js | 23 + .../static/tests/documents_test_utils.js | 79 + .../static/tests/error_dialog_patch.test.js | 80 + .../helpers/mock_server/controllers/main.js | 28 + .../helpers/mock_server/models/document.js | 139 + .../helpers/mock_server/models/res_users.js | 15 + .../tests/helpers/mock_server/models/share.js | 21 + .../tests/helpers/mock_server/models/tags.js | 33 + .../tests/helpers/model_definitions_setup.js | 7 + .../tests/tours/documents_delete_tours.js | 138 + .../tours/documents_folder_rights_tours.js | 34 + addons_extensions/documents/tests/__init__.py | 16 + .../documents/tests/test_attachment_access.py | 114 + .../documents/tests/test_controllers.py | 890 +++ .../documents/tests/test_documents_access.py | 1010 ++++ .../documents/tests/test_documents_common.py | 88 + .../tests/test_documents_document.py | 555 ++ .../tests/test_documents_document_folder.py | 153 + .../tests/test_documents_multicompany.py | 183 + .../tests/test_documents_multipage.py | 34 + .../documents/tests/test_documents_request.py | 137 + .../documents/tests/test_documents_tag.py | 8 + .../documents/tests/test_mail_activity.py | 90 + .../documents/tests/test_mail_gateway.py | 258 + .../documents/tests/tours/__init__.py | 2 + .../test_documents_and_folder_deletion.py | 29 + .../tests/tours/test_folder_rights.py | 21 + .../views/documents_access_views.xml | 14 + .../views/documents_document_views.xml | 467 ++ .../views/documents_folder_views.xml | 49 + .../documents/views/documents_menu_views.xml | 60 + .../documents/views/documents_share_views.xml | 0 .../documents/views/documents_tag_views.xml | 59 + .../views/documents_templates_portal.xml | 31 + .../views/documents_templates_share.xml | 410 ++ .../views/mail_activity_plan_views.xml | 22 + .../documents/views/mail_activity_views.xml | 31 + .../documents/views/mail_alias_views.xml | 27 + .../views/res_config_settings_views.xml | 41 + .../documents/views/res_partner_views.xml | 18 + .../documents/wizard/__init__.py | 5 + .../wizard/documents_link_to_record_wizard.py | 36 + .../documents_link_to_record_wizard_views.xml | 23 + .../wizard/documents_request_wizard.py | 94 + .../wizard/documents_request_wizard_views.xml | 54 + .../controllers/main.py | 5 +- 262 files changed, 195658 insertions(+), 2 deletions(-) create mode 100644 addons_extensions/documents/__init__.py create mode 100644 addons_extensions/documents/__manifest__.py create mode 100644 addons_extensions/documents/controllers/__init__.py create mode 100644 addons_extensions/documents/controllers/documents.py create mode 100644 addons_extensions/documents/controllers/home.py create mode 100644 addons_extensions/documents/controllers/portal.py create mode 100644 addons_extensions/documents/data/digest_data.xml create mode 100644 addons_extensions/documents/data/documents_document_data.xml create mode 100644 addons_extensions/documents/data/documents_tag_data.xml create mode 100644 addons_extensions/documents/data/documents_tour.xml create mode 100644 addons_extensions/documents/data/files/Mails_inbox.pdf create mode 100644 addons_extensions/documents/data/files/mail.png create mode 100644 addons_extensions/documents/data/files/mail_thumbnail.png create mode 100644 addons_extensions/documents/data/ir_actions_server_data.xml create mode 100644 addons_extensions/documents/data/ir_config_parameter_data.xml create mode 100644 addons_extensions/documents/data/mail_activity_type_data.xml create mode 100644 addons_extensions/documents/data/mail_template_data.xml create mode 100644 addons_extensions/documents/demo/documents_document_demo.xml create mode 100644 addons_extensions/documents/demo/files/Commercial-Tenancy-Agreement.pdf create mode 100644 addons_extensions/documents/demo/files/Invoice2018_0007.pdf create mode 100644 addons_extensions/documents/demo/files/city.jpg create mode 100644 addons_extensions/documents/demo/files/invoice_azure_interior.pdf create mode 100644 addons_extensions/documents/demo/files/invoice_openvalue.pdf create mode 100644 addons_extensions/documents/demo/files/la.jpg create mode 100644 addons_extensions/documents/demo/files/people.jpg create mode 100644 addons_extensions/documents/demo/files/sorry_netsuite.jpg create mode 100644 addons_extensions/documents/i18n/ar.po create mode 100644 addons_extensions/documents/i18n/az.po create mode 100644 addons_extensions/documents/i18n/bg.po create mode 100644 addons_extensions/documents/i18n/bs.po create mode 100644 addons_extensions/documents/i18n/ca.po create mode 100644 addons_extensions/documents/i18n/cs.po create mode 100644 addons_extensions/documents/i18n/da.po create mode 100644 addons_extensions/documents/i18n/de.po create mode 100644 addons_extensions/documents/i18n/documents.pot create mode 100644 addons_extensions/documents/i18n/el.po create mode 100644 addons_extensions/documents/i18n/es.po create mode 100644 addons_extensions/documents/i18n/es_419.po create mode 100644 addons_extensions/documents/i18n/et.po create mode 100644 addons_extensions/documents/i18n/fa.po create mode 100644 addons_extensions/documents/i18n/fi.po create mode 100644 addons_extensions/documents/i18n/fr.po create mode 100644 addons_extensions/documents/i18n/fr_BE.po create mode 100644 addons_extensions/documents/i18n/gu.po create mode 100644 addons_extensions/documents/i18n/he.po create mode 100644 addons_extensions/documents/i18n/hi.po create mode 100644 addons_extensions/documents/i18n/hr.po create mode 100644 addons_extensions/documents/i18n/hu.po create mode 100644 addons_extensions/documents/i18n/id.po create mode 100644 addons_extensions/documents/i18n/is.po create mode 100644 addons_extensions/documents/i18n/it.po create mode 100644 addons_extensions/documents/i18n/ja.po create mode 100644 addons_extensions/documents/i18n/km.po create mode 100644 addons_extensions/documents/i18n/ko.po create mode 100644 addons_extensions/documents/i18n/lb.po create mode 100644 addons_extensions/documents/i18n/lt.po create mode 100644 addons_extensions/documents/i18n/mn.po create mode 100644 addons_extensions/documents/i18n/nb.po create mode 100644 addons_extensions/documents/i18n/nl.po create mode 100644 addons_extensions/documents/i18n/pl.po create mode 100644 addons_extensions/documents/i18n/pt.po create mode 100644 addons_extensions/documents/i18n/pt_BR.po create mode 100644 addons_extensions/documents/i18n/ro.po create mode 100644 addons_extensions/documents/i18n/ru.po create mode 100644 addons_extensions/documents/i18n/sk.po create mode 100644 addons_extensions/documents/i18n/sl.po create mode 100644 addons_extensions/documents/i18n/sr@latin.po create mode 100644 addons_extensions/documents/i18n/sv.po create mode 100644 addons_extensions/documents/i18n/th.po create mode 100644 addons_extensions/documents/i18n/tr.po create mode 100644 addons_extensions/documents/i18n/uk.po create mode 100644 addons_extensions/documents/i18n/vi.po create mode 100644 addons_extensions/documents/i18n/zh_CN.po create mode 100644 addons_extensions/documents/i18n/zh_TW.po create mode 100644 addons_extensions/documents/models/__init__.py create mode 100644 addons_extensions/documents/models/documents_access.py create mode 100644 addons_extensions/documents/models/documents_document.py create mode 100644 addons_extensions/documents/models/documents_mixin.py create mode 100644 addons_extensions/documents/models/documents_redirect.py create mode 100644 addons_extensions/documents/models/documents_share.py create mode 100644 addons_extensions/documents/models/documents_tag.py create mode 100644 addons_extensions/documents/models/documents_unlink_mixin.py create mode 100644 addons_extensions/documents/models/ir_attachment.py create mode 100644 addons_extensions/documents/models/ir_binary.py create mode 100644 addons_extensions/documents/models/mail_activity.py create mode 100644 addons_extensions/documents/models/mail_activity_type.py create mode 100644 addons_extensions/documents/models/res_config_settings.py create mode 100644 addons_extensions/documents/models/res_partner.py create mode 100644 addons_extensions/documents/models/res_users.py create mode 100644 addons_extensions/documents/security/ir.model.access.csv create mode 100644 addons_extensions/documents/security/security.xml create mode 100644 addons_extensions/documents/static/description/icon.png create mode 100644 addons_extensions/documents/static/description/icon.svg create mode 100644 addons_extensions/documents/static/src/attachments/attachment_model_patch.js create mode 100644 addons_extensions/documents/static/src/attachments/document_file_viewer.js create mode 100644 addons_extensions/documents/static/src/attachments/document_file_viewer.xml create mode 100644 addons_extensions/documents/static/src/attachments/models.d.ts create mode 100644 addons_extensions/documents/static/src/components/documents_breadcrumbs.js create mode 100644 addons_extensions/documents/static/src/components/documents_breadcrumbs.xml create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.js create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_settings.js create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_settings.xml create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_member_invite.js create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_member_invite.xml create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_partner_access.js create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_partner_access.xml create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_panel.js create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_select.js create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_select.xml create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.js create mode 100644 addons_extensions/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml create mode 100644 addons_extensions/documents/static/src/core/document_model.js create mode 100644 addons_extensions/documents/static/src/core/document_service.js create mode 100644 addons_extensions/documents/static/src/core/router.js create mode 100644 addons_extensions/documents/static/src/core/store_service_patch.js create mode 100644 addons_extensions/documents/static/src/img/documents-paperless.png create mode 100644 addons_extensions/documents/static/src/js/tours/documents.js create mode 100644 addons_extensions/documents/static/src/model/sample_server.js create mode 100644 addons_extensions/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.js create mode 100644 addons_extensions/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml create mode 100644 addons_extensions/documents/static/src/owl/components/pdf_group_name/pdf_group_name.js create mode 100644 addons_extensions/documents/static/src/owl/components/pdf_group_name/pdf_group_name.scss create mode 100644 addons_extensions/documents/static/src/owl/components/pdf_group_name/pdf_group_name.xml create mode 100644 addons_extensions/documents/static/src/owl/components/pdf_manager/pdf_manager.js create mode 100644 addons_extensions/documents/static/src/owl/components/pdf_manager/pdf_manager.scss create mode 100644 addons_extensions/documents/static/src/owl/components/pdf_manager/pdf_manager.xml create mode 100644 addons_extensions/documents/static/src/owl/components/pdf_page/pdf_page.js create mode 100644 addons_extensions/documents/static/src/owl/components/pdf_page/pdf_page.scss create mode 100644 addons_extensions/documents/static/src/owl/components/pdf_page/pdf_page.xml create mode 100644 addons_extensions/documents/static/src/portal_webclient/components/documents_permission_panel/documents_access_settings.js create mode 100644 addons_extensions/documents/static/src/portal_webclient/components/documents_permission_panel/documents_access_settings.xml create mode 100644 addons_extensions/documents/static/src/portal_webclient/components/documents_permission_panel/documents_permission_panel.js create mode 100644 addons_extensions/documents/static/src/portal_webclient/components/documents_permission_panel/documents_permisssion_panel.xml create mode 100644 addons_extensions/documents/static/src/portal_webclient/main.js create mode 100644 addons_extensions/documents/static/src/portal_webclient/portal_webclient.js create mode 100644 addons_extensions/documents/static/src/portal_webclient/portal_webclient.xml create mode 100644 addons_extensions/documents/static/src/portal_webclient/views/documents_controller_mixin.xml create mode 100644 addons_extensions/documents/static/src/scss/documents.variables.dark.scss create mode 100644 addons_extensions/documents/static/src/scss/documents.variables.scss create mode 100644 addons_extensions/documents/static/src/scss/documents_kanban_view.scss create mode 100644 addons_extensions/documents/static/src/scss/documents_public_pages.scss create mode 100644 addons_extensions/documents/static/src/scss/documents_views.scss create mode 100644 addons_extensions/documents/static/src/views/activity/documents_activity_controller.js create mode 100644 addons_extensions/documents/static/src/views/activity/documents_activity_controller.xml create mode 100644 addons_extensions/documents/static/src/views/activity/documents_activity_model.js create mode 100644 addons_extensions/documents/static/src/views/activity/documents_activity_renderer.js create mode 100644 addons_extensions/documents/static/src/views/activity/documents_activity_renderer.xml create mode 100644 addons_extensions/documents/static/src/views/activity/documents_activity_view.js create mode 100644 addons_extensions/documents/static/src/views/chatter/documents_chatter_overlay.scss create mode 100644 addons_extensions/documents/static/src/views/chatter/documents_chatter_overlay.xml create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_group.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_item.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_item.xml create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js create mode 100644 addons_extensions/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml create mode 100644 addons_extensions/documents/static/src/views/documents_controller_mixin.xml create mode 100644 addons_extensions/documents/static/src/views/documents_folder_many2one/documents_folder_many2one.js create mode 100644 addons_extensions/documents/static/src/views/documents_model_mixin.js create mode 100644 addons_extensions/documents/static/src/views/documents_type_icon/documents_type_icon.js create mode 100644 addons_extensions/documents/static/src/views/documents_type_icon/documents_type_icon.scss create mode 100644 addons_extensions/documents/static/src/views/documents_type_icon/documents_type_icon.xml create mode 100644 addons_extensions/documents/static/src/views/form/folder_form_controller.js create mode 100644 addons_extensions/documents/static/src/views/form/folder_form_view.js create mode 100644 addons_extensions/documents/static/src/views/helper/documents_action_helper.js create mode 100644 addons_extensions/documents/static/src/views/helper/documents_action_helper.xml create mode 100644 addons_extensions/documents/static/src/views/helper/documents_drop_zone.js create mode 100644 addons_extensions/documents/static/src/views/helper/documents_drop_zone.xml create mode 100644 addons_extensions/documents/static/src/views/helper/documents_file_viewer.js create mode 100644 addons_extensions/documents/static/src/views/helper/documents_file_viewer.xml create mode 100644 addons_extensions/documents/static/src/views/helper/documents_pdf_thumbnail_service.js create mode 100644 addons_extensions/documents/static/src/views/hooks.js create mode 100644 addons_extensions/documents/static/src/views/kanban/documents_kanban_arch_parser.js create mode 100644 addons_extensions/documents/static/src/views/kanban/documents_kanban_compiler.js create mode 100644 addons_extensions/documents/static/src/views/kanban/documents_kanban_controller.js create mode 100644 addons_extensions/documents/static/src/views/kanban/documents_kanban_controller.xml create mode 100644 addons_extensions/documents/static/src/views/kanban/documents_kanban_model.js create mode 100644 addons_extensions/documents/static/src/views/kanban/documents_kanban_record.js create mode 100644 addons_extensions/documents/static/src/views/kanban/documents_kanban_renderer.js create mode 100644 addons_extensions/documents/static/src/views/kanban/documents_kanban_renderer.xml create mode 100644 addons_extensions/documents/static/src/views/kanban/documents_kanban_view.js create mode 100644 addons_extensions/documents/static/src/views/list/document_count_field.js create mode 100644 addons_extensions/documents/static/src/views/list/documents_list_controller.js create mode 100644 addons_extensions/documents/static/src/views/list/documents_list_controller.xml create mode 100644 addons_extensions/documents/static/src/views/list/documents_list_model.js create mode 100644 addons_extensions/documents/static/src/views/list/documents_list_renderer.js create mode 100644 addons_extensions/documents/static/src/views/list/documents_list_renderer.xml create mode 100644 addons_extensions/documents/static/src/views/list/documents_list_renderer_checkbox.js create mode 100644 addons_extensions/documents/static/src/views/list/documents_list_view.js create mode 100644 addons_extensions/documents/static/src/views/search/documents_control_panel.js create mode 100644 addons_extensions/documents/static/src/views/search/documents_control_panel.scss create mode 100644 addons_extensions/documents/static/src/views/search/documents_control_panel.xml create mode 100644 addons_extensions/documents/static/src/views/search/documents_search_model.js create mode 100644 addons_extensions/documents/static/src/views/search/documents_search_panel.js create mode 100644 addons_extensions/documents/static/src/views/search/documents_search_panel.scss create mode 100644 addons_extensions/documents/static/src/views/search/documents_search_panel.xml create mode 100644 addons_extensions/documents/static/src/web/activity/activity_menu_patch.js create mode 100644 addons_extensions/documents/static/src/web/activity/activity_menu_patch.xml create mode 100644 addons_extensions/documents/static/src/web/activity/activity_model_patch.js create mode 100644 addons_extensions/documents/static/src/web/documents_domain_selector.js create mode 100644 addons_extensions/documents/static/src/web/error_dialog/error_dialog_patch.js create mode 100644 addons_extensions/documents/static/src/web/error_dialog/error_dialog_patch.xml create mode 100644 addons_extensions/documents/static/tests/documents_activity_tests.js create mode 100644 addons_extensions/documents/static/tests/documents_kanban_mobile_tests.js create mode 100644 addons_extensions/documents/static/tests/documents_kanban_tests.js create mode 100644 addons_extensions/documents/static/tests/documents_pdf_manager_tests.js create mode 100644 addons_extensions/documents/static/tests/documents_systray_activity_menu_tests.js create mode 100644 addons_extensions/documents/static/tests/documents_test_utils.js create mode 100644 addons_extensions/documents/static/tests/error_dialog_patch.test.js create mode 100644 addons_extensions/documents/static/tests/helpers/mock_server/controllers/main.js create mode 100644 addons_extensions/documents/static/tests/helpers/mock_server/models/document.js create mode 100644 addons_extensions/documents/static/tests/helpers/mock_server/models/res_users.js create mode 100644 addons_extensions/documents/static/tests/helpers/mock_server/models/share.js create mode 100644 addons_extensions/documents/static/tests/helpers/mock_server/models/tags.js create mode 100644 addons_extensions/documents/static/tests/helpers/model_definitions_setup.js create mode 100644 addons_extensions/documents/static/tests/tours/documents_delete_tours.js create mode 100644 addons_extensions/documents/static/tests/tours/documents_folder_rights_tours.js create mode 100644 addons_extensions/documents/tests/__init__.py create mode 100644 addons_extensions/documents/tests/test_attachment_access.py create mode 100644 addons_extensions/documents/tests/test_controllers.py create mode 100644 addons_extensions/documents/tests/test_documents_access.py create mode 100644 addons_extensions/documents/tests/test_documents_common.py create mode 100644 addons_extensions/documents/tests/test_documents_document.py create mode 100644 addons_extensions/documents/tests/test_documents_document_folder.py create mode 100644 addons_extensions/documents/tests/test_documents_multicompany.py create mode 100644 addons_extensions/documents/tests/test_documents_multipage.py create mode 100644 addons_extensions/documents/tests/test_documents_request.py create mode 100644 addons_extensions/documents/tests/test_documents_tag.py create mode 100644 addons_extensions/documents/tests/test_mail_activity.py create mode 100644 addons_extensions/documents/tests/test_mail_gateway.py create mode 100644 addons_extensions/documents/tests/tours/__init__.py create mode 100644 addons_extensions/documents/tests/tours/test_documents_and_folder_deletion.py create mode 100644 addons_extensions/documents/tests/tours/test_folder_rights.py create mode 100644 addons_extensions/documents/views/documents_access_views.xml create mode 100644 addons_extensions/documents/views/documents_document_views.xml create mode 100644 addons_extensions/documents/views/documents_folder_views.xml create mode 100644 addons_extensions/documents/views/documents_menu_views.xml create mode 100644 addons_extensions/documents/views/documents_share_views.xml create mode 100644 addons_extensions/documents/views/documents_tag_views.xml create mode 100644 addons_extensions/documents/views/documents_templates_portal.xml create mode 100644 addons_extensions/documents/views/documents_templates_share.xml create mode 100644 addons_extensions/documents/views/mail_activity_plan_views.xml create mode 100644 addons_extensions/documents/views/mail_activity_views.xml create mode 100644 addons_extensions/documents/views/mail_alias_views.xml create mode 100644 addons_extensions/documents/views/res_config_settings_views.xml create mode 100644 addons_extensions/documents/views/res_partner_views.xml create mode 100644 addons_extensions/documents/wizard/__init__.py create mode 100644 addons_extensions/documents/wizard/documents_link_to_record_wizard.py create mode 100644 addons_extensions/documents/wizard/documents_link_to_record_wizard_views.xml create mode 100644 addons_extensions/documents/wizard/documents_request_wizard.py create mode 100644 addons_extensions/documents/wizard/documents_request_wizard_views.xml diff --git a/addons_extensions/documents/__init__.py b/addons_extensions/documents/__init__.py new file mode 100644 index 000000000..1f4530082 --- /dev/null +++ b/addons_extensions/documents/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- + +from . import models +from . import controllers +from . import wizard diff --git a/addons_extensions/documents/__manifest__.py b/addons_extensions/documents/__manifest__.py new file mode 100644 index 000000000..33936f17b --- /dev/null +++ b/addons_extensions/documents/__manifest__.py @@ -0,0 +1,94 @@ +# -*- coding: utf-8 -*- +{ + 'name': "Documents", + + 'summary': "Collect, organize and share documents.", + + 'description': """ +App to upload and manage your documents. + """, + + 'category': 'Productivity/Documents', + 'sequence': 80, + 'version': '1.4', + 'application': True, + 'website': 'https://www.ftprotech.in/', + + # any module necessary for this one to work correctly + 'depends': ['base', 'mail', 'portal', 'attachment_indexation', 'digest'], + + # always loaded + 'data': [ + 'security/security.xml', + 'security/ir.model.access.csv', + 'data/digest_data.xml', + 'data/mail_template_data.xml', + 'data/mail_activity_type_data.xml', + 'data/documents_tag_data.xml', + 'data/documents_document_data.xml', + 'data/ir_config_parameter_data.xml', + 'data/documents_tour.xml', + 'views/res_config_settings_views.xml', + 'views/res_partner_views.xml', + 'views/documents_access_views.xml', + 'views/documents_document_views.xml', + 'views/documents_folder_views.xml', + 'views/documents_tag_views.xml', + 'views/mail_activity_views.xml', + 'views/mail_activity_plan_views.xml', + 'views/mail_alias_views.xml', + 'views/documents_menu_views.xml', + 'views/documents_templates_portal.xml', + 'views/documents_templates_share.xml', + 'wizard/documents_link_to_record_wizard_views.xml', + 'wizard/documents_request_wizard_views.xml', + # Need the `ir.actions.act_window` to exist + 'data/ir_actions_server_data.xml', + ], + + 'demo': [ + 'demo/documents_document_demo.xml', + ], + 'license': 'OEEL-1', + 'assets': { + 'web.assets_backend': [ + 'documents/static/src/model/**/*', + 'documents/static/src/scss/documents_views.scss', + 'documents/static/src/scss/documents_kanban_view.scss', + 'documents/static/src/attachments/**/*', + 'documents/static/src/core/**/*', + 'documents/static/src/js/**/*', + 'documents/static/src/owl/**/*', + 'documents/static/src/views/**/*', + ('remove', 'documents/static/src/views/activity/**'), + ('after', 'web/static/src/core/errors/error_dialogs.xml', 'documents/static/src/web/error_dialog/error_dialog_patch.xml'), + 'documents/static/src/web/**/*', + 'documents/static/src/components/**/*', + ], + 'web.assets_backend_lazy': [ + 'documents/static/src/views/activity/**', + ], + 'web._assets_primary_variables': [ + 'documents/static/src/scss/documents.variables.scss', + ], + "web.dark_mode_variables": [ + ('before', 'documents/static/src/scss/documents.variables.scss', 'documents/static/src/scss/documents.variables.dark.scss'), + ], + 'documents.public_page_assets': [ + ('include', 'web._assets_helpers'), + ('include', 'web._assets_backend_helpers'), + 'web/static/src/scss/pre_variables.scss', + 'web/static/lib/bootstrap/scss/_variables.scss', + 'web/static/lib/bootstrap/scss/_variables-dark.scss', + 'web/static/lib/bootstrap/scss/_maps.scss', + ('include', 'web._assets_bootstrap_backend'), + 'documents/static/src/scss/documents_public_pages.scss', + ], + 'documents.webclient': [ + ('include', 'web.assets_backend'), + # documents webclient overrides + 'documents/static/src/portal_webclient/**/*', + 'web/static/src/start.js', + ], + } +} diff --git a/addons_extensions/documents/controllers/__init__.py b/addons_extensions/documents/controllers/__init__.py new file mode 100644 index 000000000..c3ac99aa5 --- /dev/null +++ b/addons_extensions/documents/controllers/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- + +from . import documents +from . import home +from . import portal diff --git a/addons_extensions/documents/controllers/documents.py b/addons_extensions/documents/controllers/documents.py new file mode 100644 index 000000000..8cc026a2a --- /dev/null +++ b/addons_extensions/documents/controllers/documents.py @@ -0,0 +1,695 @@ +# -*- coding: utf-8 -*- + +import base64 +import io +import json +import logging +import pathlib +import zipfile +from collections import defaultdict +from contextlib import ExitStack +from http import HTTPStatus +from typing import NamedTuple + +from werkzeug.exceptions import BadRequest, Forbidden + +from odoo import conf, fields, http, _ +from odoo.exceptions import MissingError +from odoo.http import request, content_disposition +from odoo.osv import expression +from odoo.tools import replace_exceptions, str2bool, consteq + +from odoo.addons.mail.controllers.attachment import AttachmentController + +logger = logging.getLogger(__name__) + + +class ShareRoute(http.Controller): + + # util methods ################################################################################# + def _max_content_length(self): + return request.env['documents.document'].get_document_max_upload_limit() + + @classmethod + def _get_folder_children(cls, folder_sudo): + if request.env.user._is_public(): + permission_domain = expression.AND([ + [('is_access_via_link_hidden', '=', False)], + [('access_via_link', 'in', ('edit', 'view'))], + # public user cannot access a request, unless access_via_link='edit' + expression.OR([ + [('access_via_link', '=', 'edit')], + [('type', '!=', 'binary')], + expression.OR([ + [('attachment_id', '!=', False)], + [('shortcut_document_id.attachment_id', '!=', False)], + ]), + ]) + ]) + else: + permission_domain = [('user_permission', '!=', 'none')] # needed for search in sudo + + children_sudo = request.env['documents.document'].sudo().search(expression.AND([ + [('folder_id', '=', folder_sudo.id)], + permission_domain, + ]), order='name') + + return children_sudo + + @classmethod + def _from_access_token(cls, access_token, *, skip_log=False, follow_shortcut=True): + """Get existing document with matching ``access_token``. + + It returns an empty recordset when either: + * the document is not found ; + * the user cannot already access the document and the link + doesn't grant access ; + * the matching document is a shortcut but it is not allowed to + follow the shortcut. + Otherwise it returns the matching document in sudo. + + A ``documents.access`` record is created/updated with the + current date unless the ``skip_log`` flag is set. + + :param str access_token: the access token to the document record + :param bool skip_log: flag to prevent updating the record last + access date of internal users, useful to prevent silly + serialization errors, best used with read-only controllers. + :param bool follow_shortcut: flag to prevent returning the target + from a shortcut and instead return the shortcut itself. + """ + Doc = request.env['documents.document'] + + # Document record + try: + document_token, __, encoded_id = access_token.rpartition('o') + document_id = int(encoded_id, 16) + except ValueError: + return Doc + if not document_token or document_id < 1: + return Doc + document_sudo = Doc.browse(document_id).sudo() + if not document_sudo.document_token: # like exists() but prefetch + return Doc + if not request.env.user._is_internal() and not document_sudo.active: + return Doc + + # Permissions + if not ( + consteq(document_token, document_sudo.document_token) + and (document_sudo.user_permission != 'none' + or document_sudo.access_via_link != 'none') + ): + return Doc + + # Document access + skip_log = skip_log or request.env.user._is_public() + if not skip_log: + for doc_sudo in filter(bool, (document_sudo, document_sudo.shortcut_document_id)): + if access := request.env['documents.access'].sudo().search([ + ('partner_id', '=', request.env.user.partner_id.id), + ('document_id', '=', doc_sudo.id), + ]): + access.last_access_date = fields.Datetime.now() + else: + request.env['documents.access'].sudo().create([{ + 'document_id': doc_sudo.id, + 'partner_id': request.env.user.partner_id.id, + 'last_access_date': fields.Datetime.now(), + }]) + + # Shortcut + if follow_shortcut: + if target_sudo := document_sudo.shortcut_document_id: + if (target_sudo.user_permission != 'none' + or (target_sudo.access_via_link != 'none' + and not target_sudo.is_access_via_link_hidden)): + document_sudo = target_sudo + else: + document_sudo = Doc + + # Extra validation step, to run with the target + if ( + request.env.user._is_public() + and document_sudo.type == 'binary' + and not document_sudo.attachment_id + and document_sudo.access_via_link != 'edit' + ): + # public cannot access a document request, unless access_via_link='edit' + return Doc + + return document_sudo + + def _make_zip(self, name, documents): + """ + Create a zip file in memory out of the given ``documents``, + recursively exploring the folders, get an HTTP response to + download that zip file. + + :param str name: the name to give to the zip file + :param odoo.models.Model documents: documents to load in the ZIP + :return: a http response to download the zip file + """ + class Item(NamedTuple): + path: str + content: str + + seen_folders = set() # because of shortcuts, we can have loops + # many documents can have the same name + seen_names = defaultdict(int) + + def unique(pathname): + # files inside a zip can not have the same name + # (files in the documents application can) + seen_names[pathname] += 1 + if seen_names[pathname] <= 1: + return pathname + + ext = ''.join(pathlib.Path(pathname).suffixes) + return f'{pathname.removesuffix(ext)}-{seen_names[pathname]}{ext}' + + def make_zip_item(document, folder): + if document.type == 'url': + raise ValueError("cannot create a zip item out of an url") + if document.type == 'folder': + # it is the ending slash that makes it appears as a + # folder inside the zip file. + return Item(unique(f'{folder.path}{document.name}') + '/', '') + try: + stream = self._documents_content_stream(document.shortcut_document_id or document) + except (ValueError, MissingError): + return None # skip + return Item(unique(f'{folder.path}{stream.download_name}'), stream.read()) + + def generate_zip_items(documents_sudo, folder): + documents_sudo = documents_sudo.sorted(lambda d: d.id) + + yield from ( + item + for doc in documents_sudo + if doc.type == 'binary' and (doc.shortcut_document_id or doc).attachment_id + if (item := make_zip_item(doc, folder)) is not None + ) + for folder_sudo in documents_sudo: + if folder_sudo.type != 'folder' or folder_sudo in seen_folders: + continue + seen_folders.add(folder_sudo) + + yield (sub_folder := make_zip_item(folder_sudo, folder)) + for sub_document_sudo in self._get_folder_children(folder_sudo): + yield from generate_zip_items(sub_document_sudo, sub_folder) + + # TODO: zip on-the-fly while streaming instead of loading the + # entire zip in memory and sending it all at once. + + stream = io.BytesIO() + root_folder = Item('', '') + try: + with zipfile.ZipFile(stream, 'w') as doc_zip: + for (path, content) in generate_zip_items(documents, root_folder): + doc_zip.writestr(path, content, compress_type=zipfile.ZIP_DEFLATED) + except zipfile.BadZipfile: + logger.exception("BadZipfile exception") + + content = stream.getvalue() + headers = [ + ('Content-Type', 'zip'), + ('X-Content-Type-Options', 'nosniff'), + ('Content-Length', len(content)), + ('Content-Disposition', content_disposition(name)) + ] + return request.make_response(content, headers) + + # Download & upload routes ##################################################################### + @http.route('/documents/pdf_split', type='http', methods=['POST'], auth="user") + def pdf_split(self, new_files=None, ufile=None, archive=False, vals=None): + """Used to split and/or merge pdf documents. + + The data can come from different sources: multiple existing documents + (at least one must be provided) and any number of extra uploaded files. + + :param new_files: the array that represents the new pdf structure: + [{ + 'name': 'New File Name', + 'new_pages': [{ + 'old_file_type': 'document' or 'file', + 'old_file_index': document_id or index in ufile, + 'old_page_number': 5, + }], + }] + :param ufile: extra uploaded files that are not existing documents + :param archive: whether to archive the original documents + :param vals: values for the create of the new documents. + """ + vals = json.loads(vals) + new_files = json.loads(new_files) + # find original documents + document_ids = set() + for new_file in new_files: + for page in new_file['new_pages']: + if page['old_file_type'] == 'document': + document_ids.add(page['old_file_index']) + documents = request.env['documents.document'].browse(document_ids) + + with ExitStack() as stack: + files = request.httprequest.files.getlist('ufile') + open_files = [stack.enter_context(io.BytesIO(file.read())) for file in files] + + # merge together data from existing documents and from extra uploads + document_id_index_map = {} + current_index = len(open_files) + for document in documents: + open_files.append(stack.enter_context(io.BytesIO(base64.b64decode(document.datas)))) + document_id_index_map[document.id] = current_index + current_index += 1 + + # update new_files structure with the new indices from documents + for new_file in new_files: + for page in new_file['new_pages']: + if page.pop('old_file_type') == 'document': + page['old_file_index'] = document_id_index_map[page['old_file_index']] + + # apply the split/merge + new_documents = documents._pdf_split(new_files=new_files, open_files=open_files, vals=vals) + + # archive original documents if needed + if archive == 'true': + documents.write({'active': False}) + + response = request.make_response(json.dumps(new_documents.ids), [('Content-Type', 'application/json')]) + return response + + @http.route('/documents/', type='http', auth='public') + def documents_home(self, access_token): + document_sudo = self._from_access_token(access_token) + + if not document_sudo: + Redirect = request.env['documents.redirect'].sudo() + if document_sudo := Redirect._get_redirection(access_token): + return request.redirect( + f'/documents/{document_sudo.access_token}', + HTTPStatus.MOVED_PERMANENTLY, + ) + + if request.env.user._is_public(): + return self._documents_render_public_view(document_sudo) + elif request.env.user._is_portal(): + return self._documents_render_portal_view(document_sudo) + else: # assume internal user + # Internal users use the /odoo/documents/ route + return request.redirect( + f'/odoo/documents/{access_token}', + HTTPStatus.TEMPORARY_REDIRECT, + ) + + def _documents_render_public_view(self, document_sudo): + target_sudo = document_sudo.shortcut_document_id + if ( + target_sudo + and target_sudo.access_via_link != 'none' + and not target_sudo.is_access_via_link_hidden + ): + return request.redirect(f'/odoo/documents/{target_sudo.access_token}') + if target_sudo or not document_sudo: + return request.render( + 'documents.not_available', {'document': document_sudo}, status=404) + if document_sudo.type == 'url': + return request.redirect( + document_sudo.url, code=HTTPStatus.TEMPORARY_REDIRECT, local=False) + if document_sudo.type == 'binary' and document_sudo.attachment_id: + return request.render('documents.share_file', {'document': document_sudo}) + if document_sudo.type == 'binary': + return request.render('documents.document_request_page', {'document': document_sudo}) + if document_sudo.type == 'folder': + sub_documents_sudo = ShareRoute._get_folder_children(document_sudo) + return request.render('documents.public_folder_page', { + 'folder': document_sudo, + 'documents': sub_documents_sudo, + 'subfolders': { + sub_folder_sudo.id: ShareRoute._get_folder_children(sub_folder_sudo) + for sub_folder_sudo in sub_documents_sudo + if sub_folder_sudo.type == 'folder' + } + }) + else: + e = f"unknown document type {document_sudo.type}" + raise NotImplementedError(e) + + def _documents_render_portal_view(self, document): + """ Render the portal version (stripped version of the backend Documents app). """ + # We build the session information necessary for the web client to load + session_info = request.env['ir.http'].session_info() + mods = conf.server_wide_modules or [] + lang = request.env.context.get('lang') + cache_hashes = { + "translations": request.env['ir.http'].get_web_translations_hash(mods, lang), + } + + session_info.update( + cache_hashes=cache_hashes, + user_companies={ + 'current_company': request.env.company.id, + 'allowed_companies': { + request.env.company.id: { + 'id': request.env.company.id, + 'name': request.env.company.name, + }, + }, + }, + documents_init=self._documents_get_init_data(document, request.env.user), + ) + + return request.render( + 'documents.document_portal_view', + {'session_info': session_info}, + ) + + @classmethod + def _documents_get_init_data(cls, document, user): + """ Get initialization data to restore the interface on the selected document. """ + if not document or not user: + return {} + + document.ensure_one() + documents_init = {} + + # If the user does not have access to the parent folder, we open it in the "SHARED" folder. + if document.type != 'folder': + parent = document.folder_id + shared_root = False if user.share else "SHARED" # Portal don't have 'Shared with me' + if parent: + documents_init['folder_id'] = parent.id if parent.user_permission in {'view', 'edit'} else shared_root + else: + documents_init['folder_id'] = ( + "MY" if document.owner_id == user + else "COMPANY" if not user.share and ( + document.owner_id == document.env.ref('base.user_root') or document.access_internal != 'none') + else shared_root + ) + documents_init['document_id'] = document.id + target = document.shortcut_document_id or document + if document.type == 'binary' and target.attachment_id: + documents_init['open_preview'] = True + else: + documents_init['folder_id'] = document.id + + return documents_init + + @http.route('/documents/avatar/', + type='http', auth='public', readonly=True) + def documents_avatar(self, access_token): + """Show the avatar of the document's owner, or the avatar placeholder. + + :param access_token: the access token to the document record + """ + partner_sudo = self._from_access_token(access_token, skip_log=True).owner_id.partner_id + return request.env['ir.binary']._get_image_stream_from( + partner_sudo, 'avatar_128', placeholder=partner_sudo._avatar_get_placeholder_path() + ).get_response(as_attachment=False) + + @http.route('/documents/content/', + type='http', auth='public', readonly=True) + def documents_content(self, access_token, download=True): + """Serve the file of the document. + + :param access_token: the access token to the document record + :param download: whether to download the document on the user's + file system or to preview the document within the browser + """ + document_sudo = self._from_access_token(access_token, skip_log=True) + if not document_sudo: + raise request.not_found() + if document_sudo.type == 'url': + return request.redirect( + document_sudo.url, code=HTTPStatus.TEMPORARY_REDIRECT, local=False) + if document_sudo.type == 'folder': + return self._make_zip( + f'{document_sudo.name}.zip', + self._get_folder_children(document_sudo), + ) + if document_sudo.type == 'binary': + if not document_sudo.attachment_id: + raise request.not_found() + with replace_exceptions(ValueError, by=BadRequest): + download = str2bool(download) + with replace_exceptions(ValueError, MissingError, by=request.not_found()): + stream = self._documents_content_stream(document_sudo) + return stream.get_response(as_attachment=download) + e = f"unknown document type {document_sudo.type!r}" + raise NotImplementedError(e) + + def _documents_content_stream(self, document_sudo): + return request.env['ir.binary']._get_stream_from(document_sudo) + + @http.route('/documents/redirect/', type='http', auth='public', readonly=True) + def documents_redirect(self, access_token): + return request.redirect(f'/odoo/documents/{access_token}', HTTPStatus.MOVED_PERMANENTLY) + + @http.route('/documents/touch/', type='json', auth='user') + def documents_touch(self, access_token): + self._from_access_token(access_token) + return {} + + @http.route(['/documents/thumbnail/', + '/documents/thumbnail//x'], + type='http', auth='public', readonly=True) + def documents_thumbnail(self, access_token, width='0', height='0', unique=''): + """Show the thumbnail of the document, or a placeholder. + + :param access_token: the access token to the document record + :param width: resize the thumbnail to this maximum width + :param height: resize the thumbnail to this maximum height + :param unique: force storing the file in the browser cache, best + used with the checksum of the attachment + """ + with replace_exceptions(ValueError, by=BadRequest): + width = int(width) + height = int(height) + send_file_kwargs = {} + if unique: + send_file_kwargs['immutable'] = True + send_file_kwargs['max_age'] = http.STATIC_CACHE_LONG + document_sudo = self._from_access_token(access_token, skip_log=True) + return request.env['ir.binary']._get_image_stream_from( + document_sudo, 'thumbnail', width=width, height=height + ).get_response(as_attachment=False, **send_file_kwargs) + + @http.route(['/documents/document//update_thumbnail'], type='json', auth='user') + def documents_update_thumbnail(self, document_id, thumbnail): + """Update the thumbnail of the document (after it has been generated by the browser). + + We update the thumbnail in SUDO, after checking the read access, so it will work + if the user that generates the thumbnail is not the user who uploaded the document. + """ + document = request.env['documents.document'].browse(document_id) + document.check_access('read') + if document.thumbnail_status != 'client_generated': + return + document.sudo().write({ + 'thumbnail': thumbnail, + 'thumbnail_status': 'present' if thumbnail else 'error', + }) + + @http.route(['/documents/zip'], type='http', auth='user') + def documents_zip(self, file_ids, zip_name, **kw): + """Select many files / folders in the interface and click on download. + + :param file_ids: if of the files to zip. + :param zip_name: name of the zip file. + """ + ids_list = [int(x) for x in file_ids.split(',')] + documents = request.env['documents.document'].browse(ids_list) + documents.check_access('read') + return self._make_zip(zip_name, documents) + + @http.route([ + '/document/download/all//', + '/document/download/all/'], type='http', auth='public') + def documents_download_all_legacy(self, access_token=None, share_id=None): + logger.warning("Deprecated since Odoo 18. Please access /documents/content/ instead.") + return request.redirect(f'/documents/content/{access_token}', HTTPStatus.MOVED_PERMANENTLY) + + @http.route([ + '/document/share//', + '/document/share/'], type='http', auth='public') + def share_portal(self, share_id=None, token=None): + logger.warning("Deprecated since Odoo 18. Please access /odoo/documents/ instead.") + return request.redirect(f'/odoo/documents/{token}', code=HTTPStatus.MOVED_PERMANENTLY) + + @http.route(['/documents/upload/', '/documents/upload/'], + type='http', auth='public', methods=['POST'], + max_content_length=_max_content_length) + def documents_upload( + self, + ufile, + access_token='', + owner_id='', + partner_id='', + res_id='', + res_model='', + ): + """ + Replace an existing document or create new ones. + + :param ufile: a list of multipart/form-data files. + :param access_token: the access token to a folder in which to + create new documents, or the access token to an existing + document where to upload/replace its attachment. + A falsy value means no folder_id and is allowed for + internal users to upload at the root of "My Drive". + :param owner_id, partner_id, res_id, res_model: field values + when creating new documents, for internal users only + """ + is_internal_user = request.env.user._is_internal() + if is_internal_user and not access_token: + document_sudo = request.env['documents.document'].sudo() + else: + document_sudo = self._from_access_token(access_token) + if ( + not document_sudo + or (document_sudo.user_permission != 'edit' + and document_sudo.access_via_link != 'edit') + or document_sudo.type not in ('binary', 'folder') + ): + raise request.not_found() + + files = request.httprequest.files.getlist('ufile') + if not files: + raise BadRequest("missing files") + if len(files) > 1 and document_sudo.type not in (False, 'folder'): + raise BadRequest("cannot save multiple files inside a single document") + + if is_internal_user: + with replace_exceptions(ValueError, by=BadRequest): + owner_id = int(owner_id) if owner_id else request.env.user.id + partner_id = int(partner_id) if partner_id else False + res_model = res_model or 'documents.document' + res_id = int(res_id) if res_id else False + elif owner_id or partner_id or res_id or res_model: + raise Forbidden("only internal users can provide field values") + else: + owner_id = document_sudo.owner_id.id if request.env.user.is_public else request.env.user.id + partner_id = False + res_model = 'documents.document' + res_id = False # replaced by the document's id + + document_ids = self._documents_upload( + document_sudo, files, owner_id, partner_id, res_id, res_model) + if len(document_ids) == 1: + document_sudo = document_sudo.browse(document_ids) + + if request.env.user._is_public(): + return request.redirect(document_sudo.access_url) + else: + return request.make_json_response(document_ids) + + def _documents_upload(self, + document_sudo, files, owner_id, partner_id, res_id, res_model): + """ Replace an existing document or upload a new one. """ + is_internal_user = request.env.user._is_internal() + + document_ids = [] + AttachmentSudo = request.env['ir.attachment'].sudo(not is_internal_user) + + if document_sudo.type == 'binary': + attachment_sudo = AttachmentSudo._from_request_file( + files[0], mimetype='TRUST' if is_internal_user else 'GUESS' + ) + attachment_sudo.res_model = document_sudo.res_model + attachment_sudo.res_id = document_sudo.res_id + values = {'attachment_id': attachment_sudo.id} + if not document_sudo.attachment_id: # is a request + if document_sudo.access_via_link == 'edit': + values['access_via_link'] = 'view' + self._documents_upload_create_write(document_sudo, values) + document_ids.append(document_sudo.id) + else: + folder_sudo = document_sudo + for file in files: + document_sudo = self._documents_upload_create_write(folder_sudo, { + 'attachment_id': AttachmentSudo._from_request_file( + file, mimetype='TRUST' if is_internal_user else 'GUESS' + ).id, + 'type': 'binary', + 'access_via_link': 'none' if folder_sudo.access_via_link in (False, 'none') else 'view', + 'folder_id': folder_sudo.id, + 'owner_id': owner_id, + 'partner_id': partner_id, + 'res_model': res_model, + 'res_id': res_id, + }) + document_ids.append(document_sudo.id) + if folder_sudo.create_activity_option: + folder_sudo.browse(document_ids).documents_set_activity( + settings_record=folder_sudo) + + return document_ids + + def _documents_upload_create_write(self, document_sudo, vals): + """ + The actual function that either write vals on a binary document + or create a new document with vals inside a folder document. + """ + if document_sudo.type == 'binary': + document_sudo.write(vals) + else: + vals.setdefault('folder_id', document_sudo.id) + document_sudo = document_sudo.create(vals) + if not document_sudo.res_model: + document_sudo.res_model = 'documents.document' + if ( + document_sudo.res_model == 'documents.document' + and not document_sudo.res_id + ): + document_sudo.res_id = document_sudo.id + if (any(field_name in vals for field_name in [ + 'raw', 'datas', 'attachment_id'])): + document_sudo.message_post(body=_( + "Document uploaded by %(user)s", + user=request.env.user.name + )) + + return document_sudo + + @http.route('/documents/upload_traceback', type='http', methods=['POST'], auth='user') + def documents_upload_traceback(self, ufile, max_content_length=1 << 20): # 1MiB + if not request.env.user._is_internal(): + raise Forbidden() + + folder_sudo = request.env.ref( + 'documents.document_support_folder', + raise_if_not_found=False + ).sudo() + if not folder_sudo or not folder_sudo.active: + raise request.not_found() + + files = request.httprequest.files.getlist('ufile') + if not files: + raise BadRequest("missing files") + if len(files) > 1: + raise BadRequest("This route only accepts one file at a time.") + + traceback_sudo = self._documents_upload_create_write(folder_sudo, { + 'attachment_id': request.env['ir.attachment']._from_request_file( + files[0], mimetype='text/plain').id, + 'type': 'binary', + 'access_internal': 'none', + 'access_via_link': 'view', + 'folder_id': folder_sudo.id, + 'owner_id': request.env.ref('base.user_root').id, + }) + + return request.make_json_response([traceback_sudo.access_url]) + + +class DocumentsAttachmentController(AttachmentController): + + @http.route() + def mail_attachment_upload(self, *args, **kw): + """ Override to prevent the creation of a document when uploading + an attachment from an activity already linked to a document.""" + if kw.get('activity_id'): + document = request.env['documents.document'].search([('request_activity_id', '=', int(kw['activity_id']))]) + if document: + request.update_context(no_document=True) + return super().mail_attachment_upload(*args, **kw) diff --git a/addons_extensions/documents/controllers/home.py b/addons_extensions/documents/controllers/home.py new file mode 100644 index 000000000..45e4ea7b5 --- /dev/null +++ b/addons_extensions/documents/controllers/home.py @@ -0,0 +1,86 @@ +from http import HTTPStatus +from urllib.parse import urlencode + +from odoo.http import request, route + +from odoo.addons.web.controllers import home as web_home +from odoo.addons.web.controllers.utils import ensure_db +from .documents import ShareRoute + + +class Home(web_home.Home): + def _web_client_readonly(self): + """ Force a read/write cursor for documents.access """ + path = request.httprequest.path + if ( + path.startswith('/odoo/documents') + and (request.httprequest.args.get('access_token') or path.removeprefix('/odoo/documents/')) + and request.session.uid + ): + return False + return super()._web_client_readonly() + + @route(readonly=_web_client_readonly) + def web_client(self, s_action=None, **kw): + """ Handle direct access to a document with a backend URL (/odoo/documents/). + + It redirects to the document either in: + - the backend if the user is logged and has access to the Documents module + - or a lightweight version of the backend if the user is logged and has not access + to the Document module but well to the documents.document model + - or the document portal otherwise + + Goal: Allow to share directly the backend URL of a document. + """ + subpath = kw.get('subpath', '') + access_token = request.params.get('access_token') or subpath.removeprefix('documents/') + if not subpath.startswith('documents') or not access_token or '/' in access_token: + return super().web_client(s_action, **kw) + + # This controller should be auth='public' but it actually is + # auth='none' for technical reasons (see super). Those three + # lines restore the public behavior. + ensure_db() + request.update_env(user=request.session.uid) + request.env['ir.http']._authenticate_explicit('public') + + # Public/Portal users use the /documents/ route + if not request.env.user._is_internal(): + return request.redirect( + f'/documents/{access_token}', + HTTPStatus.TEMPORARY_REDIRECT, + ) + + document_sudo = ShareRoute._from_access_token(access_token, follow_shortcut=False) + + if not document_sudo: + Redirect = request.env['documents.redirect'].sudo() + if document_sudo := Redirect._get_redirection(access_token): + return request.redirect( + f'/odoo/documents/{document_sudo.access_token}', + HTTPStatus.MOVED_PERMANENTLY, + ) + + # We want (1) the webclient renders the webclient template and load + # the document action. We also want (2) the router rewrites + # /odoo/documents/ to /odoo/documents/ in the + # URL. + # We redirect on /web so this override does kicks in again, + # super() is loaded and renders the normal home template. We add + # custom fragments so we can load them inside the router and + # rewrite the URL. + query = {} + if request.session.debug: + query['debug'] = request.session.debug + fragment = { + 'action': request.env.ref("documents.document_action").id, + 'menu_id': request.env.ref('documents.menu_root').id, + 'model': 'documents.document', + } + if document_sudo: + fragment.update({ + f'documents_init_{key}': value + for key, value + in ShareRoute._documents_get_init_data(document_sudo, request.env.user).items() + }) + return request.redirect(f'/web?{urlencode(query)}#{urlencode(fragment)}') diff --git a/addons_extensions/documents/controllers/portal.py b/addons_extensions/documents/controllers/portal.py new file mode 100644 index 000000000..cc6592956 --- /dev/null +++ b/addons_extensions/documents/controllers/portal.py @@ -0,0 +1,19 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.addons.portal.controllers.portal import CustomerPortal +from odoo.exceptions import AccessError +from odoo.http import request + + +class DocumentCustomerPortal(CustomerPortal): + + def _prepare_home_portal_values(self, counters): + values = super()._prepare_home_portal_values(counters) + if 'document_count' in counters: + Document = request.env['documents.document'] + try: + count = Document.search_count([]) + except AccessError: + count = 0 + values['document_count'] = count + return values diff --git a/addons_extensions/documents/data/digest_data.xml b/addons_extensions/documents/data/digest_data.xml new file mode 100644 index 000000000..29a333170 --- /dev/null +++ b/addons_extensions/documents/data/digest_data.xml @@ -0,0 +1,23 @@ + + + + + Tip: Become a paperless company + 300 + + +
+ + Tip: Become a paperless company + +

An easy way to process incoming mails is to configure your scanner to send PDFs to . Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc.

+
+ +

An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc.

+
+ +
+
+
+
+
diff --git a/addons_extensions/documents/data/documents_document_data.xml b/addons_extensions/documents/data/documents_document_data.xml new file mode 100644 index 000000000..c9439f9ca --- /dev/null +++ b/addons_extensions/documents/data/documents_document_data.xml @@ -0,0 +1,43 @@ + + + + + + folder + view + Internal + True + + + + folder + edit + Finance + True + + + + folder + Marketing + edit + True + + + + Support + folder + none + none + + + + + Video: Odoo Documents + url + https://youtu.be/Ayab6wZ_U1A + + + + + diff --git a/addons_extensions/documents/data/documents_tag_data.xml b/addons_extensions/documents/data/documents_tag_data.xml new file mode 100644 index 000000000..1898a04df --- /dev/null +++ b/addons_extensions/documents/data/documents_tag_data.xml @@ -0,0 +1,127 @@ + + + + + Draft + 2 + + + + Inbox + 4 + + + + To Validate + 6 + + + + Validated + 8 + + + + Deprecated + 10 + + + + HR + 9 + + + + Sales + 9 + + + + Legal + 9 + + + + Other + 10 + + + + Presentations + 10 + + + + Contracts + 10 + + + + Project + 10 + + + + Text + 10 + + + + + + Bill + 4 + + + + Expense + 5 + + + + VAT + 6 + + + + Fiscal + 7 + + + + Financial + 8 + + + + + 10 + + + + + 11 + + + + + + Ads + 12 + + + + Brochures + 13 + + + + Images + 14 + + + + Videos + 15 + + diff --git a/addons_extensions/documents/data/documents_tour.xml b/addons_extensions/documents/data/documents_tour.xml new file mode 100644 index 000000000..7c77d5468 --- /dev/null +++ b/addons_extensions/documents/data/documents_tour.xml @@ -0,0 +1,10 @@ + + + + documents_tour + 180 + The tour is complete. Try uploading your own documents now. + ]]> + + diff --git a/addons_extensions/documents/data/files/Mails_inbox.pdf b/addons_extensions/documents/data/files/Mails_inbox.pdf new file mode 100644 index 0000000000000000000000000000000000000000..84ceac8345319e579a3a64aaa895cdbe5fe2ec6e GIT binary patch literal 235806 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

    4*A5eJ+j`leH;m1}uM?4+1X z4yf65YR6RoM-Lzf@ll-{XBl zdY*q8{QIHi)iea^0+Io_Mb5D5_6V_u_Eh8qqkON(55C`5qAk{1bnSiUe+Ac~{{_$o zsERH3Zx6Hefv>Xd?od1b4nH%3m4g5)h9cb{Oa~4@IS%ivX2~vJIHRE0^&pn697K0QXhx%uHFPP^Ux|?E8V4L-}PJIWj*%C!Ntf!PU$AA9e*JE zBG43K*Sj-Bj&^9?$81x-GF6|J!NH!eBy&{>d7)zfkT@p%vwnM!iaq-80$0K@GFuco zp~d`pAo*@57@tgE-I`s48OEW?9Ta4FAkBup^Z%p>SdZJ`d);-t)>h)<;x4YJd0&vz zOKJDiw{;?U;z~xcN?T!~+}L!+#p?UD=|}^$&I~(62``zr-vRx*H}{TE=S4 zXERl?^?ZF$iBBA^V)&Xa~%*UjZofnVsSonk+e(rH)5DXn&G(LV1ze~Tgj94bb8tw znjM#)Okhe3*GTIr|4#tO(cY@V|DhuG(+-S;_IQ8t;SPLQA|jlPkx|X^Z|mfOMRCw3 zr0bXS98O4N{yB=9sjFZ2kG7(cxXe1|bHAh3+5uyf5i`tI=VvDe90x@W!-bP3RJ|rn z9?jxKGi=K$mB)du=^WG$6+ZS8tfyGl`mn0)$fSC=N?4euoV!@JW`O>LC;Ht#C(oHi zZPyP*XHk03ik0FvOYld;TS=uYh#R2vDfA^s4@Z2(+y_8+Vu<0 zZO|a~F}1$8ZNLC-)4lLf!DbTPzOBklGH?ejYwm9lRic| z?-*_YpVgDySK1GFx<9i^kgcc}@|}=Fws@eCFLbk8EpaUNG2=8ug*#2wu*_cY|C!pt;`-B0%ZmgpZSKN`=aJqj}YIHmL(TY1hpjE z_rfoY(G@$2J1{k*WK|LkN%bSK0CX8O#3;{nyhgr%`;`}=Ia$(dCx=kt?Ha)t1w`4D zQ;2kHnt|Y=5SFsKbmT@U<7Yd` zMFW~UM==$3u^ETi%DNos74Gr@P{o3`Y)CYETXS9&1ETcWpJd3)v0>0gNVEhgnAD28 zbY(1AHYeK~Sy#Qac;tj|CqeTY8J+o+?rtg?Y1>?asqzdR66%|)t)4<5_2rG!^DC*M zPESut$dqh3R(NI=IMMcDz@b%l!)|a55_zOt_4i}PlDnxg7A_l@cXUo6UbFO#zwJjp6 zidA(2VWhK|oTj)_2}qjufD2Bp&J8Z|hVDYTZ2tXiC$t8Sv+JJgZ)4ZaO-)~s8Zh_$ z)wJu?1%fJxq6M6R}C7PqJOLM?F(F70Pn4Q&Hg2HhpHTKwtne7~A)GHLkabg$j;-!rq&r)t#@?)oz zc41FFy5nLOVu1SO%y&eM6K8W?gTu{sHwuKa`MSL^W!>=v-K3OW{JH#SpXJUB=H1;zp~`VU84pLz(*ov!6CzABJW%;4>ODA?>d{9n1~xw3Kx^U*Tjpj* z2^-@!heZBq#YK2h&iFD3ir~aiFMJgTct^G+^1ifYu=gs#z9_^F{S7~5$2L_`c@44) z*y$_TNk5bDE0IS%(u6<&=efI!(Ja^uNr2{22OGh#s3b};iHSy$g(Xi?#Ssuq%^)gQ zy%!hGB((`wwbn93@v&}Dr*gS&1maC0HnBy!)y{kU(QIsgaI+E7kqw-+Bh2vRnNNmV z?3quqUc{6pIa+sEvPnG}NBqWBfnC4^lZ4cy=5k@mW{3xwmjzdVCTo6-6r8nD>_oA) zX$s|y?E7Wu)w4bp(2*R*(YQ5~vMdCpvq_Pwp-l#$g~$i&TPJ^}F`FEvxZ3($dR^+o zBz65DyGhr-YWPLB0;St&(<4CX6kSeSWIj_?MF~WcHQ0{sN<=lrfRoihj+4BUF)7c{ z7b|5|U_;gIqF_Bf&uAk*#yR5|pQ^TKT`Bznc{oUdXbH-F#I=m^3sN&;39U*YUcbj? z!l)teej``y-|1ydzbGWMPX8Oao&Y$&StQg+!OE4bu#FH-Y-+hh8|zA(Agyj$m*SAz z&t=??uz50E+j8PgdMh$_e0NNcl7D-yI8t1sEmqNW0ldwNu+WR3>RV}qZ;tz-D8oIN z$#im>Q7Y$9{cIc=_b4g{ygd}sjZVrQ+Bb84csexNxNd(=#|()!2~?JMi8F@C&UIZ6JZ>7m9`Mj4?Q<>wn7=3eE8L&hbp0VHx=g`{WunDKy1i}K% zfow=1K=5Z(1+z9lq$CXE?`sWpd3ezcHhtFk4IBSDLnZQoC_y9eA;6sd#d~q98~Rf1 z=IBO+tRk)uej~|(GxA7HeaFb_zs=YJTYv9KQj&Sst?kW5(1WlO{nrDebYjeh1&(?}?AKkLzmi&CX4{wvQSM|M*VP8^c4HfKJG_5;J|AD$+=W5KBC>QQ%lw z=RVBK6p-BCT~v3vp{{h>t^3gzxWsU~IuMn^Z&n-G`dwR|o^MxbTRyigGUp-wSg<>N zu-d+_9>?=MvsVW1g-k%*JV*XHM@+yuVV;S!12zCdru*fg2I?Hepp9wa|2*2oX(gl6I+v9BjR8NCW$PDYeTFxh{H#{LUg(CIk~ zvh^6Kh~jmV1GAY(vQ5a@f2Bk{mq4#I9ThAe{Q5!c{GKCFywOTdZ>(oQdKp$VNdOOH zr1$e%a@~|TH~RWIbMO#w=NRa`lbCQ#C33Lr4IpXvQrw37GB13$ARteLNMhb?)SeLv z(uS>jT=pU4JDhSTj??bYtByfc#YMKW{o1)mG8Fi46WZ+mPeS{DTMHTR85tRvng9Q0 z!+)YdMyCHvXdh*{>nksHzs|P1K6@ujrHospPe~_8m?n((#A)M0Xb^0O1N}i{6{xTJ zEugU2fh+vV!}urBe+Dl)FNq_yuQ5Lv8bw0xZDhq_}O#fVi=MWTY>n?O*yHK*tA z!~KMw5)Q$)bx@F5tsgXWZTMNN-(eNI<=`3^YUFiqAh)>sT9L0#Px0H{fXMs$Y?urI zD6ZSh<_U)0wwNB*_rxmf(MN=ASY;5I5(AL7i7|FgMaRP{)hMk(Pwpe%9a0iM1#z=+ zOi{Geaij#)3v|6Wr+DL~phJ$ZtY-U8{6m{n1MtA?fv@b;Ba{Q_j$B4@^eNdJPrdk( zT`kc{fG`K$8ssG~#vva;<7?|UthgiYkaeOqzl&WeLgwKwhKF1v7%93fNzOMt_{OFP zZGvwJS2{;V*enB#V}KdY+2%<81lD2 zFR^V4dy;m(v0Qg|`cn!+AE$4)`#M7kLtJ64 z2)-hpAa|;p<$pdgbZiN?!?*yyYDaNc`z-Cn&~M3xD#Q2)zx@<+1y*hldWAkw?-=*l z!id6B;pqr{qTPPqQ4P`6!-pcw66FYe0^xl)M!hi&HHMkN^NC;!a!0#C-XRSohLO?F zjw0}h&IX17hmFF=5+a6)!G9opzdnc0pRVz!T&nIUF|n7O&SRn5b6Q0AL%I6a20_*e*hk?Mx4Y$Lwzw z1`nmZsD6AK+Pp#ZN@N?{jURY1q6$OHbV-2q87E>Ka~*SALO%?VSxP^s4gbafEER#g z_n_7b8(|l5i+M!RLOCUs9lR2>62nVWk64e%7PA7>j@J&?j@Ay=CYk;Q?F;XOYl^cA z024%{M&LxuV~%5vV<=!MU_@g|M2LYY!Qx;DQ%F-`(|=8ieHFwV#UZ7Vgd}EH1gRuX zA@XcwMsP;#v1k+38b(b7t|W&kZXx1qgth2|_-g z2KoLmy@V|07nt}R3~VvU8ALFzDasA?F7Gb>E?GnmRW}Bif(YJrgnw9W9;L9DZ_E?X zE)_UD0v)3$;t}(TVoQoxsx#P=DDQE(Z58#T?)n z>vMBNPQ;Ho+3n#BEwhP#f*Vpa0FvO}B7qMgE^cCkdmncR-ht!01jrESLmY4r>0l0B zNW5W=L+I{k6Fid%WVSKbe)}Dn7wP5j-^lSvyF%)K$FJ@Zop|eG0FznODH--66qvw$Bgm)*B>$?G9%DCBMt-OK7t?2 z>1%;S37t4~O*eh3ukW~d%R8OeMIJ8dnQN>wC3a_A<6$=X8zU!zFJd(UO;Vr`bvDXc zjFZZeA`>Gv0#1^Bw7qjxcng|z6#y#l_q}hKpM3w1(T|~%c!!x3J zQ8A_NDElKYDt}|B0udnuA2vBdL{g)uebh44EUPv%2C+0HI&+{UoQ^m!-cq*XPkmst+Z=? ztj%;X|Mp-0U2bl0!e9Fj;eB`SmcpnjBe0BGyGOp1>&Dlv_|1Kl-^DW7#9)@+gruj% z%guGNc5#-kO6!+!z&%M-o;H(Ez`bTw`=;YCVpZx|=@n-lj^D*Mc{FD%FvQ=lJeWtC zRp^d;AxY@%P9{OQh)BH9*!AqL-mZhS^F`wl3Pt1YOtH*}OmS$Ta7EGL(6gZ(aD~X? zw}rPJlhF_1FNH1?A2tPB)~;F(O|%O*7h8)sIarw_IjA2b1ufREwJp{^%K6qBs`%Dc z0al@zg|WWv$kG_QAw67Ec2n`$U+(kGVuSVeJU4F=gN>5!RdGGKb51#?r#l&vmj^-z zq9-jn#@xg0S`{nt96Tp8o9t{h2=}qG? z+67ASK9es~itqys6^HYqvlLwui$O_6tT%iNk(#HVIHb&89+3;e6Sj)V)|pGpXTz*i z4M{yZaVyujj)@}g*gl$`|7iHwg3SoM1Igglv|-%zE5C#PHbRNkL%fQ;rNg(PnjfUU zS+?qfCmfpwiG}>?1xViQ>g^n<>aq~qDB>_VK(l1}ZT_C`FQ|R@Vr{^0`sl($VSkii zLKz)Bp^;bXaz#^ic;4#p&j`W>WzWL#P$ft)Ahyn=91eBqq@PO#KePh6Zxlax{Et5m z20lMO>X~)vIGJ>L>x@4-Kf0|Qls&YLvR6qi>}r@M8#4)sET=M<7nT*PYAR|gtLa#f z!;z4k-@Az&TE;U?IFFlcQ`IQa<){T^JeVq&zB%%EZ`Kc>8uG-n82CB%6!ooN#l=QF zlI(VYS@@fFu06>^J7#|u_K_3?Uk+){58QS$M zm5G_DCo@RI+*dqpVMe>Q#s`!;ISa%kVw@G`Y}V&C~u zwl8`8mn{CsZePA-g~!QEP&d8^Ok~S#?0TyaAqSk9*H)PJR$6QI_1L&6>{i&2_6#zp z*-csapO;8Dc)9DH11j_}t~;P%T4he=ki%Dcg~?}7j!Vq*G*@&rKjhk<6rFMW05R|z zoXk%>EwbO6=Ji5KA&zw-L#Pc2wCWV4bjYh|NFadl@qJyTEivH3PTwTfPVb!g8^lF) zfbdhWqesjmICbS(A4YKz@FeP)}Y3< zeHmCu%F==Pk$%H3JLk%(8J6^trp?o8K^zEKso>f`n4@}jS>&D+1*a@GWb8qE0FAcA z(+GmS`F1j4*-^F~EV8Zk)u#cVW&~iPW`Xtuq#@?r#!3yWREv6D4q2e8BYCQo&Y43d zxBL0=@s&pJ2UCOwX29*kom}2B-#+*hpd#k@oo{B;4!+o( z-83W`RbQAho(PSG{z*NK!bFEDBW86tj^={BsIbM^Y?OQ~ZhTJJNzF8fyYRs{? zRJ4@cma_{yG5=5i2Dc2Z%fOhtW)Ah?EPg|G7@xb? z%I((e&|bRiu6bZOSG6gQZMmPK`v$SjVFp%UIU~e8wh+2~A?3o@?XGTRnd+;ya+Lm* zMGLtXI;D}s@Z&oi7X%GV5`QbRcccS9J;=a{w?r0vnU!#535-lXE|Yy$ZTQ+(kVkPa z9GD054l^77E=sMV1&r$3;QpQ7aLU&jF!<2tztkQ!4+ zot>`WCyZr5VLVCpb)COPl0G!G(Qaryb+G+ROUSpAz|y!D4GWn(3*#@;9~On>=cA(i zhS84|&6OGKFa-T%9a`bq=_xP!@9)~4vu-x*P=f0i>JpJ}>KY&b#9ClJ?swd$4(xx+ zU_L@D=2OWxw;KBz>cpe@Mk#np@0(EqZ-(z|uW!DWeqqdrRiVA*4e54%I3%1AxH?k= zY+P-ggZ`>(?^pyw|HuG;&~g5p>v`9RUwJb&3Eb5%syXiR>kxmvM^rIFy7=0sE(lED zRvLMlqNn|f*LziCj<+g9N+m+kL(Y<@Tpopz6g`TyKfQ18myHiC8jp`__FJaRhndJ8 zp4>F0?uQ&D6|Oi>I5w%^Z!i@;%WuUoQS<2|y9WR2TY@ z_{m>VhBnUWenLofYGb41+z@b+`1WwKx#y9sk!>|! z?BcuT=&Q(XVV5b4V!2;mN2z*c3b@e|g7=5_oyv!43oP@#yk{tny-%{;ym0bK`pf51 zOef_f=1Giu#tAB;B^xCfy(>_N?TWPBh=`X>-h!Z=cNA*K3 z-j8FNdQzQ>`n7hM1&*rt%^gcF*H80JK^T62gwy2qmG{ZfHBbEAI3S$*%d2eO#(bzN*U`vSmfYcTr=$Hl&0|K((hb9HKU+nj4eX zCh&(bDnz~l}tE@AJ{KE}Oy#0?`w<}XC`C}A7U97|wVlM3Txv3p$> z+G#QKX~C*`|IcI!dxV=g;!}k%&|pf-XcKdU3Fr$?JnpQbBkCLm>VO{`Q;9`W(Dy)P ziZ-f$>m}+a6FFpQbpYQJ&E`DXjwn7+>KLeuZ;FkBmu~|gvPQA^Dkw?Jxle>-o9?(- zs~7LuyHHW1#Gm(e_9L={Ww7&m*F#(p%bM5Ex-1$PpP0=Qy55j#(--33PZq6qoOx>) zd^5s~Nd7GkWPOOKXAtx@Z)%Gm6p~hDcg@ykPWEb)(AVkx2L$+1u{S3FzV(xY_9Zn< zYvG0(lXlpu*!Pt8u=I_rJ9~g9?!Ylih)ZZtjqpxK{{#v4%GuVB+TKquyj74#ok4ZP zvqGGdF7HpQz3t>j$r#~?GfXu@J{2O*L5@QU%rvL5CiXuojTHfNu!tz<$u)CfxYe+Lgthn>YVRMO&v*6)n zhe+3%p*(4B`r-BZe8Zd0)Egj{=eUNf+hOqct5&L)^Cr@d1V5oxuU)!N!B3RP1P)aN zs?%Obdx|DuyjIznGQ1X;g?~5AaZlg*5ZCIpX53`g|8(sPN(bNDXlmXASc)|B@x>me zC1se5Z|N1dxy>3#Krw|#V~jLHPe+<9g6Xu=m9||KK7C7Q@oTEtdyLN3bH17%g#}2> zMI%RyV{_(JcMKKS%w-<#OSMm1&h~R=`m+nVht`>+ZY91uU3xTe&SbYe)J*$y-H%1) z{CI2WSfi2F=ZLjpBQ%6^5n)@EDplpDc4ndZr6gfU93`@eoQrr0N<}GtIpO=FjPg9}=c8L>W#g zT^E}FEF<@)Cke5|6tTt7p~XnUR8GE`CfRc`!K-Ts#idf&MXPeY^G{TD%N3_p9w@gj zbCg?VaDaFEbS`enW#6Qy;MF1^BHjtTaUYnSd}o{KxryH{I(;ty4!D)#acwPr~B zZ|!kW*H5Af(fai1Sf;T&*fl%;s?d zl!mmPf9*)Zt)eH<9Uv{^C^W4pY(zs@A;;&GXgG&+_upK~Os>?lOoPc`?P{*AsB0*x z+gyr+t2As4cAWwRE#qGeU2u! zEoz<6YRlK(qx-^Cz}6v1+msKW(iIPvP6Zt~AL(h-2naB~5K;|o#I>}Dex`9h7EA5N zgceE>ufI@;Djz`=h3A5P@Vc6p7m<- zuyVwP3A}RVDho*D86{OdBt}kU<4XIej1RO$P{h$mwUKchTq(5YXGf}vR!U$GJ}(;w zmsoDSOHsBG*m?Sgg)beI|SF2o&_9?&M>Gj=mz<-FKpLa9{9sl-ln> zTUEE4dCiu+y-7(m_H)OPBI9VF0;ZK(i^t~$xf{o;mvxwi)|le$Ht)cLiX35A`p3d% zE>lgptPiM{5DN;3I?3lm{(eD3*qmS0e>qq5GZ>Cnt^63cE|i}k6{CjHd-qQ682s9@ zrjca;zVo76z0>@3d!yep@*VwUGj2+i<^;cEpc#dd#W9&;gkX7dY&)(`0=itjbuN)N8w+pUW^;-$q@5(ENy;OfNA$Q57PB}` zlh$#v!AC;AYN9=GavlcYrW%&HNke^nDf@mF^#qMs#w}x^GHULaD46`4s@(2FYQ{Z8 zKViY$pPxfWsSr*;G8+!R0d$Bmp>3TsB%y*FTJzkJohGM{7{-s%@C-DW+j#R(`@nlR zFn2NCHCizLlaZVYtzJH8#6`?=Ke4@*C}hKYymIHjfo6;yCQ4*EGenvphnryS+--N= z_GQE45t$}l@9>7E4N{B>qm{OGuxRS1DlL(UP;)3p&98o+VoeJ|!$}w*94Q~QT0`Jy zMVu82PCl)78ug}HVy=Gbc|oTJ`$xqBeuj=A_q;<&TmVC|y4&}97M9%^+1%t&|Dhj^ z{r*P0>Vw-9iv*LuSppn5ZN93-j`qT{Z}1azCQDXw+72zP{oK$bEK*}oJpoM$VCgQS zo&2;mAf3w~G??7L`Wl^)Kc@+nnqH+{L1EJ7V;LaI!I$YFd}vl=A*n{lk{6W%oup}W z6=xVO6V-rlFKTkC3H+mxXb{-B7F1Pz+$loG;BeWyTPFkYQQ8;r%+ISHZ?b0C^jl0tp}OIh-gc*S!W z3RA?-Q*i`CDTdbXty8Eu{==0~Agk?0-c~b9kPiI;2a0rnjf?qB)I?HT(p-yt&-aQ% z1yhh=)z^J=16n-8U`=>w07^Jf^lu&)$~RP!Uk z3yU8>L!7xYjuoDZDHWKybY8}e+m$;3#jB&WTW5(?Lg$BbZjlUyB~YO5{*Q~cPFSn8oKGsbTs309S;Ch6C&(1wkxoF#jWu!3jg zN?U5Xk9pRXNg;ig3PyWOh=*%KWYd)`y^iHA;m)1L_KeORPYSorb3L5!F7GxeM_f7u z+2;w0&Am`n{5ijb`%zOIYHYeI{eB7qqzi5Wbvgx!m-xq__5zKSm96aOV`DccQ^lxK zZF^OmjcMcMBV18O;hBu`ekL*~^KqooeA(}2q>Gf(G(1d{jaHjy&=zS$)D5WW8l5qu z<}PA*==+nxXC)NVXOqUjnTcu1@$gyY1t92xD*bgQN41u=;QHO3^B=YZk>0>}@vVQg zkWvt{yZ$~aD#gN=rE3q=WzO4Jx*$hzrz=8BDgN|eG^QD)ys&zvtfx_;idm+` z*Uq1Cd*&X(u}eP|`wLa99;!6Ae&RSObS@mE>{3cy0(7o^ z_sT31V2YwL6*?~Zl1VpVZ~R3C$~FoZXvmvjBScKU>U~lmvEXg}2Vx5sFVT3$-7qdpRjk+EZ6l9W@V*;arMK> zY`^IBIp~2BN!H(+b7`cFIQ^5R9c+zPZm=gdqwWJOp2iloKmn)pVF>Po24--W*0K5@ zNBox*NL@;e3GwetYx~HeefMvlz9!n5%*4j=N}%r`-YU?BYrhzB754#0`?x->0&@Xx z`{?NHt6onQ?~kFdk5kT)Y#w}#!He-St-B@O&R9mPn%UAm-Xd<>rSH>OhurW);w8ws z@|;Mq;{Bs31a8RFHil2{)YMa_?V6}nYtAQp63Z+s3e(Pn?B`y_wHM4jmY$Y|CN6Sm z8^n%$z63}<=HF-3v6|X_?Y+XbZEiDAPdB*X4wojJ6k^*Zt;wd_qrVN&lQe7IZrls7xOc`OPq*i;q_p*^C-iBx9?{B`{P~ zG(=T~YCvO^^Y!`F^?>1fici@tp$l_8@rY6gD^+sx@);kA7^^le8GITZ&MVfS85`AR z(lRUxNC);umIDfVV5!=q5bkj-c~)Gd(akPO2vIFAXx@wG#47II0{)KDt|1CFk85cx z+-$FW+n)dgQJPS5TXJ=9q_77w?cIYm|KYiQG51*do5@x!FcfzJEV9}?i|Wq9N(Pr6 zF3#-p_ZW(#-Ak!h)NAUnJ%vp2mhV*OU!-#Qax}t0g z%$C>mI9mkEJH+ac*zl=OM+D@m$eGIK8j=}mDEn+44y2u__=n9lDC*#TA=}~xeb46? z^YdwFEKz@5o%0k+XBWd0NwROIfseuJQV`_Fx9~yLmaF!mZH-YE5)kUiKGd2qR|ONk zc#yg{$7UaQ(%KO;^8NN00}fhVl2X;OJZp~+!Y?h>^4Ij2Cpdp8kuDg^;^S@fo{b?c ztLrTBR_z`*96L;-N42e>H|tzjKQ{7uJhkgZo3r%0gAo zrgR8%hqB#J(Q-ydPxvD@gwe1mxMtK+EcPe%qX0~1dbSP&QwgH|hv655gj1MhI{cW< zP=C{cw2;yie;s*+!NB;7obAUe*y>hwo{ZyAd{?%R2&m6lPpyBe=2&$Afv}3GlT!S;r1J`vRMbpnt4pRxo5| z7bCrV?#)H~fa7it>f>~KN!s`=T=7c|+)Xn~qR%0a^oPe1<`(%j21h_CtJ%hWwrSFb zXOau96mOBmhJ~#>))vH2W%K7WGj$mi*O!g=qRDx^`laC`LBT3v9QC&j7l$uXRi@Q1 zhjIGpU(?gTk__f~2d4wx&Z)c3V`^kWxpDd%4WxsT-Aa_|eVmzjB-wB6jY$MRf~b70 z(vJB}Rdr znU2Vm?Km_o@sO{%DUZtz5q=i5rq0m2;9Xd6Ga>UXkw=R}gP-pd=Cawm5!V-(Fyl=r!%Z-g>nxtXzg0Bj__$fl25bIwctfB|xF7@~ z$$T{Hmmah9hI_gGUF+sGzaOL_VPrZ1hah@91E>h_#I(V1~**Q6I$3*j0FxJy>$f@DPSqCh9GFr=sB&) zbaO53pT0?2C^E}QaeUNTSEAeIQ2V=^vihrpmg)~0O)@Atr&CRr@(J^=8qb?BoH!n? zFWBk{pS>Q%8qrd)27`X{9MWr*JPa{^v~<uzWp7ZzpZwiWAKA+-dkbQX$Ytiv}r#VA*Iy8 z?A_vwKP`@j#YM1Hh*wsl==O$vU2Y8GZq5~Q)+U~=0#Ex%&zfI8F)d3zbf+d7VhHk+fmcd%OY(_qyOE0)i0}* z$D!S43naqd(fz#fs(nS)6SqAs0^JoL<-DE6kjkHgDD4EN4Ft3@%xCT_A$yCZpV-z{ z%;{;^CGizAxwX7&3iNh=GuvxC{81FlE+}YQK)HDZ-=UJ(gnUAMvP=GRD!~P>M$O%Q zA6JL(nWjdL-(UMjsEy`V1=@hb0JStj70l`e#v%083FqKN*4Ph7SLMqQri=!Vs!`rrKi0zb z7n{>Zv@+ig4W2=nzbf+gf}6ZN_cUyv-jv3Z;uo_SZHUeRS@&$5~luhAXTW z8#2=ev@*?Xa>Hxi^Lh>@;0*nCJ28(C1+{;FOOk1!wlj!3hiFa4j|_fA%s?tq{#MH( z7VKlr9?Qel&Y=+O13QmBPJ?zL2i=}gKwZx-WFVii}QHzf;W+h)Ikbf)dh-Mps;DcfLwZ}rNaOW(b)xSL1i zi;|6d5qvU&44374gI1Dwrfk1uyw~*Y9vkoRw2q^^8;G;yM;a}mt{F=XIX&C(Z7`fk z;etmNcoziT&C&Llxi+b<@HY!d#`{{~&Jd^HHBlLN@qpb>AD!boPn1#f9>+0V8+b5; zT0zM7QLvT<@8);}roChHZ`Fo>z)VWq`4V5AZK&6wu?;vyUnVR4^JOVbX))~vo5v4u zL_a;w_-M^3yIEnsm2CtnT0YV^gs*Zz3CljMKYU|2R87q@8qiJ_Y)`HU-BMBT&(pst zZ?muA@ePiN%!0`yJMuk`3zz+?Y&79J2Npq!glXW}yVQFZx!u9jst;od6c`ug;E z_lB!8zR6lM>1FQs&V>+t=6;>jOvy3Wm){%yb+j-m^dSj|l9aLC^YyNunlt=r{LPx*sQ}wrpc+bY)EzS_WB15w>NOODKbQ>kf zO8ugRwVmR-EC=acEtUB$g1y0)%A?3v2+xX$_bQ+8t{|oDJu`vH}OByutMpbC*r5G`9*g$v%ja8;pmzl zo?)lYzn&V8A-O7_y`!{%n zKpubty$u_7#r@=BWF+1L1TruvZc~HEGy2!yT_L|o&{DUMerDU#H#ICfs zhEzy-Url!o#$<4a^)GTsEu{$3T_R)pT(|+p7bJ0Za`gGt5N&%{uSAUX)R2|U5c7AE zA*zfe0Wuo!y_UG(WQaKnIXDaYFAasT2!+3=eST(wJ_&^vQUW@{X!sFKBLaO}ctXF& z%ID|U{wHJxrVhvd)bGysKk>VBu<@||@BHpOJe=(Rqu+he58hK_xcy;*Z~bg_t4XnA zEww4>dlyv=LnV+<7ARWyxD_4iG)!Z^f_UjptnV1}wHLv$4>5AyF&k!GE}QqM6klMd z9*Z_Ey7)7T!|H2b&c@sHt;qEIuVRmFkHZw9qb!g^H;4}&LmHt%m3vopyRsSiwUIQ0 zbIl2k;#|MsA6FcSdQ5^&4Nah3>(N2aihydJkHi-yjp@?p?tvjm`Vkrl&wdqKy9K(B zU~dy)GLs8ky*>S!vKF-MBS+SXA7ZGuIvB#UPW1C9??0pfLE_0$*GWzG` z8GYf1HS-;8^tBXQ&U+gb7B z4L25E#uEva1KW)rjsE~R3-Fd1X~cG;K(l4M>qcW}wkwF$W4wC=c#DbD0zJ`V{bF^B zi_BxaF{AMZgV8}xkXS4nH-0qT!(bhn?s2e3hG%3X2cUBVj0_N*2D<>VEqAf8XhHav zyD(VO>`vK{W&mOf(}+kh8n_JJelQ2XH!HFX#5)022MCUWu>gWoU<#V&7BVR#n@&9;Zo>q^-isHl<5Ajyx@GZi(Z%q0~R>*fz~Hb=~f z%Olg>tDhEe=FJIu>$50MmT-p8{gf9<`At7r$eFB$SE3|OlCnnMtePoi!(U>PqD$Yb zVq3bvxo-nwTfD%!Zv&MnU*SJ8kD|e|Zv$Cbq9IX{XkP+kL?r+8+L&SIB_NcNkhNDmrZBPjZbow&&7 z&D!P7Er`(jiJy?Ad=h1h`aBP>j zCe8_@d`NmcQz^a&mijBJe@dO$$>SZjY^!=lTYjX?InZ^=+^2^y|TzUnS=9ai-&#}qNgrBF1N=Q8Li3X>@ z(UBC~p_DkNduPs>$Sb3+_8INbp6KM}-|=p`N6fX-2}z%1rI41~A^amX3rQ+JkPD4N zr(Bk;UlzHtlmw@Ai=jX9D{e}h*vrEow{#rqTo${+Z@LSVtke0$&iTu?&IvgbRQRRX zm%3t=5Ycb4nxDb{_8)11IOdmMMq5pTxF~U*OsGM&o=!l`X6yDI`HtXnEa+FI$O}>vU)euF7fIf{cxDiPv4J&q?ZkXm;!Fr}ru8i_~U{RfP|Y(2ne<$!Iuy*kv7C#dHVl*1 zWDSO}8a(D*nC0#x-drk^32x{r_X+K!dinN*{X6mwdt(d}j{njVnS;CN!l$ADI-Ml$G>D_88U~4e=I8 zEYa^vE1inwS)rl$#WHSyAF+Yh9X|6qS^e6m&^n<}+qZqa0Zj zLSF#Ra0<*bUTB*UG1cGygt|KdPDA90Z;4P`VfBhY1i<^EJO@C(;k5X{oS;JnK>9+o z!8~6y1>bc5qk$d}0qo!IKWFPEKH+<>AU|O}iT*M}e4<_B?zAR+pk8MIjiCKu zpGy2oK2iPRKHYYf@2cL8?lC`EAVlEbIs7I*8FtEmTE?$@Bd?ME&7Z^h0WdG&`2qPx ze*$!RHa`8{**_oe6yB}=tX%a!cSCz3Cg2M|=dnN;LJ0oSy9!Wh?F-Otoehw09S!)x zioy%|JPj2$&|+41LAQ?z2?q%cq*}Z9uxb)`+g`f-D^jz0AyVBn_KCeC*NX)lh75<; zp0j)*gZ`k|QRO|v+zD@Hd`A!T$GC$AzKU(bAN|Iga>JOqM;&?P-y!YY1VRHlAUyh= zJbIt)mjSoirJ&2tOv{RZol@G?ZFV0E#%=*Q6?5`*=Q7I!;=&gL_04`|(fgFL#cHD^zk z^q-Axx22PB!&x_fCfnROrnX}Ensio(S0>K5-RzFnJUu1w)>zF3a#5j)%q^gan1Alf zz*Q5F3b?oi4{M=kuQZFXEd09CU2nd;UaRF&`0h~yMAkR#Z2GbKr^G-Z3eSy6xU>9+ z$xTr0$8LA+^I(_3E!v~|BvbAt*U|NPZSL-6txnzN#O_pW?LdwJ$)KIVMfm#fQat6e zOt|No!AS$A@T`u^D5Bql=sd29Otn{)!C5kL;%elPcq6a?g&;;TQvI9@IZtL!;k%Ip zt6rC(fvi~jo-759-;R^6c!p=c*W9wAdH4fP_rFXv#dsI(mBnrIee5Rae2HtS_BO{m zhZJz2dbD)7sK#q=NOM*S^!!!xpi;bLJs_R6J+%02hYw=T5azsT!3)hp%ASpg9b%(O zXYId~4&LrfjAw(+W8KGIB)az(k`W%d>l7*oCw3kxx0kl+QaxLCHb`AN(Pb{Esjg7A z=4d>_jEBaj`UY{s;Ec0!_$%DqZz1jg|K+xCDo(rFOFMKe3tofc5M?I|PK|%Ws?hEM zxLXRjz~!U#NIqnAMgZ1VJOVbi+i@!z^#q7iK5(OZ3jBsAeR$wRKZi^tH${Q@i?*if zru=hjXp+dRUh#IvY->o7?FL=VlS6J$mgafA4RLPYqcKCeKHyct13I$@)1SM3LhrpYJuQ} z=7!{kT7q7JT!LDH_zwLY@;lUbh&1Rl$TX-l2wZ4fNL(mfh!;pd;4{z*XxOXYOWgZY z6g{7a6`2)l2KE@n6=Dt24oCnz0onk+iz4R}%)nT~a6*(qokF?+bwyG02~}WaAs8TW zfb>9TQG$GI6(~A5Y)B+XSfH;cDLGyO^avanQU?eSg(HWPg)fFwgH#oTNq|Ct76+P( zVqic#K?(!$5@4<&HX!hN5gj4UA&7dB>L4Z{utXv7A>n|e`Owyogh0Z4C^|?aATfCr zVX!i3FC;5OffWAVYdT|?YuFu^UMrw7E-KHh7f^!L%5dcMTcO4?nZwi-TAiD0lb1Rgvy5OMDT>X7Tn?M zwdtkrmFs2Qf!WdNb?Rm7Rqe$v#$biuh4O^Ew(Fe-4gkv_l%aAV1kre5o^W^AdU+t@ zp-3SGQ9Kc@$#)=o-+`|Xk5Fh(-H=cJU7>-xgxEl9L%rte_3y0#>Os6h@Ic!`Z6LHk zItuA(G{Z~04$pkBH3gttko}*fH*gS75GcYB!RWm^(5(MY)Bkpg2eu|Z6gx7B_2HTS zF@68E5qax*D?18!f%-`QD2(E9tCmDsC&UBhO6*B@)UZh9|u%RmriQHWN0>S0s#kUT+b&6})u!iWWPF;v#Z! znkTuIld-?hTHK++kXL>D^@D@*+qDlIe+2aAD%7rUh&=*gt|CK4`52}r5EeqAppR@N z%quEti0(etRFsW(lFId@n4%*Pg}w%f@lvWB>3=7}@AV7(9r(gD{;+tz*#8XIoSCUI zX{u-mN4Q`uW-EqT9JYkIyMXi!iMhGfH9>+w=y?rNxTH2k8Fj0pX24 zbW|o}iDzxEv-9L}TCedC$gdR**;>p9&`Q@-9$^0nv5gLYv3K@x(c#pKO(cuFh*o^@ z55#5fbt5WW-eOOV8R0bqweuZ%@+;!?K3_3ir_DHt!0-bd6FVDY(SZd!NW;wSudMx7rYHMSdhr^<^yu zmV|7^g(bf)2eAhD6X>3ChXuY1618T%hR~s3D%O{~tVe-8(~StHM@gcsw7dz&khk|C zzwsUu)Q}LNZSZ!^f_8bLWcs=c>Uq{d8|~~;ILC*AzUcH!BM1uvGUdOCxe-+KO_Nfr z-MsRNd@$BgyQS8G%g3jn5rs=i1Ap$07I2~F8Y?G!yk#l;m0kX-OrWC3pAJE=w=CIn zWMoLVnWeAtZ_T>XMKN;cd9m{eR7s=Xy_+)_cMfj=lR+&T^(R&y6cgTGUf$RYDfw9f zd{GXl&4Pd9bBu)oaE!gP19-{wncE{|WJl|pT}7I!VOrsOw2dtUtOqAY|ncjE#DNI}aCYFU+gGRXLe5^?aDLvwUXZCGk=jk%a`M?#P#ulX)n%@1M`BA z7Gni7zDwn1v$G0vFRhXY9DBA?Rmwveudsqk*LVg`}%dfR} zu4XTBGC|kSa~EGJaS}zfQcTw)k!Igu&-9F&<>*Purh;a4y46x+qf5I6;JaN(L9r4r>zQ_vvJdP}99nXdo6Yi3xzr*_V4FZIf>vV!?K>t}LF$xK+9AVe&ROrJul&*V%3i@mpPUGYfMSj>Au3Xkw!pL~*H6n5 zWg^nTvb=U;F?#j&q2kWS5286;US#SkhYEZboEKRCnOwZc!{A}z8KnuzPSR)R5w3}B zGt^Mhp%C_1R|S4{;26XE3u=D)4Eik5@#mlEWA|s<;yq<@*amXWht-vmSqY#?yNTMA zK|;d_6c(RZ{|da;z8|aiat14ZH7ixDXLar?-~I<`e2m|aX3~G*>zsl!;evIYiEZ1q zZQI7gw(VqMe6elYww;N-iETUQKX?07?K)NO#aj1WU2Aps`}CtWiHs{(2xqjEUx}a7 zIIt?N%`7fd$~PVn3CgRL*_Zurx8Qj zMcx6(78rX;yT>=J3Xc{uHxF;ZUlQNz6He=xT`e5_Gq5&-_wXJy$DViUAVHx zxGh@hvDR~~r@U?gDVuSplx`3G3OoFD&xLvmwaRlwV(njYy+2JWSGT@UU1;aSzudUG zp!~tkNBvK~>0J65kN?FGiX(~Sl5AZ^Hq(ESU@3r_>%nZBl@cjns$ zTSfB}SM!W{5lZ6Qp#5P?-#GY|N$XUSM{zg5?q7N-fGU6x1kE3*5*L8Ys)`gB;Q1N6 z^C!Yw{wJPL=qRGY&qzDQeu8{DzKFKamMlEt8}~Bgis+6${%aVj4A6~ z&(6?BH$q9p&p$;)V{h_#hS{riwlhk+JRPyJjMZ29J`$F z)J-Qw1&jXSt#-gX$FEtrJ?~uMa#)+BwNK_~z?we7wD;=xFW|y{uUJc-;;yHCzCRZb zryv4=t`1hCt&LW8!PG*ILq9$`(sY7&OHytMMtiu2i=ln((I*<$(@}(wTFUr&!)ksz zBZIxJQa+mD@0_=9Imd8eoV1>!S3==EE=jTUPVG@0oYt6HDLOwq)^MNf*UakS>|U=? z&FuBaUN6D-R&#j0talkc;b_vxC)&j@ccmNtaI7W0`< z%$vkSxQco#4-+|g5$4|;lH_;#*fEM1WN&z1fWuk}Z#t_IE{cUawprZ9X@FH#lLGJi zZO{6MH8QWwh@F-}V`ehOdW3Zh;p)$79)LMXxprivX!rHp*1eKeFpbetwY2j$4cO)9 zF1LBtq|=Low8Ld@?Vr(K{qxOnRIEdrtIDW#uHICx3P_Eg>fEwaFiLX7eq(n(7X|mk z$NiA^NZpQ3Rsk1qLJc2hBwU8+pkSwug5JJoVSr{p!$pSSQlSBTTZzf%y<} zW

    ScTw>E9j(oji!IWq9lcYBOsA8AbPp+*f**yBX{_6fKZQ(`Vy|gTGJ2!bSYd7} z_1zM(t}QA9L?_eSBgq6}JV7k&KyE00@_pvgcqE97(Yf2`bH0nU8ZrRz_&qif*9!K% zQ&qYH&8WN`r>WK;>13q@kP8;7f=d2}6rCwc@c3L;g7w_Z!ck~Ns~JmoikaK#CTg?f zXr1{ni%S)B7rl5)I|@bb9Oyl|$?6*#CPc3h9rPwSs%j<`wHC^7d)4T;Bt!eqyEOw= zQZJ72dFo7i){-v~%VAs?zRlQ2WbuE}K3c)9waZp)B^??5s%tj&K|3yDr#Q7c@NE;V zcu2t8`11Jhl00hERPR1+Y{Yx%1CHFfN~>h-#e+THpcRG<9!@N*T#Z2BWs z0^&gUY}gyp$6&gx{>UI_3`ty~G1@Kj61;b?QOWHo**|zT(kfd=49$Zb{quTy-f{ zYn;M$;sL`nkFeAs=DSossCDrRUAs!?(8LqK%=PVgqW}5~QY}6-myHA6o*BIR6gxA{ z)|xf341m8y#e21zCe&FkMlo8QKnwa@JkM)GRYUa8ueWO#g8(? zC{B1sxnm-f_PvdIp`Zv&!w{7~`sN*BS8U$|EbEq}C@y3Y;#_mLg3`Vn_Sy?MOmUdr6JI3RVyl*3oPY7xVRWYWX~ zZfX%fbu!c{4%E>^RBho&s#vmEqsuiZ4)sFfJ8`@7zjL*AlwVd&jlOD>ORnVoFTP_~ z-lE^>`b{xGexp}e^rq^^vJS59DF1DnC`;y9oOGwmqsk0kOOz(ZZQ8OoQc?2jA!8Dy zm++;?zNGD)tz~kN5+m6&!Ba8G`~o=;&{aSosC`bg+HM4F5(E|&*!OCI)tSyA9T)hAQ`mWwEg^UYA6 z8xO#nu^UDaQlo@fJ%VS_NTjS2%4pe?N?oaYyB?LgUqdlj^8Pt^huI)(F59GSMJ4Nl zUh&biwd*i5kwnrSTtt%29j8&!_ba&a`ra&e;AZW(s6?RH z?p5;puJzEJxAcG5A3Pebw|yT{Z#268(utq?xm)|T+ZIQd6Q55sJM3Y?ULY%oFRpP+SCiXajJgQaA zzDSkj1o9aUT|yb5oW|5TCO^Hl%W?(y4sSZv($H_bK1%KuS@L7hm2olFBlys2$vbMR z;0*-oyWU3}pI67*gE)W!S35jKWWGOpYZZJyM1mur_h*-G1nJwr}niaJAOW7P36E4k@as~e?j$4D_EA$Z#ke3C4BX`|)Y3_jcmypdQJ#Z~^Exao6%^NFxk?BL zZWf^PbHMr8>xnEEnfbH)gd#`GdtxW5U zJpVlRJA7f#vc>hKqy;TQ_*cYqP%e2Lj?xmSv^-(O`cwAD2O_Q(wksA@B1p4=qwpbTz-3w8m8q^uPM znIpz7wHq>7a3J3ptCDo?2k|p4Wj4^J(`T3n3)=t^A99qjrvdYV*(TcHQP1HpeTSD~ zYjN}m4taG~MnLL=!4jVGYHRqR0`y})P0_A%dA;7nBzgZ;R5 zFQ^Qfs|MuC3%caw5p{zo6v=(tu(4yW#hHZSIHb&vpxX2 z^@qm)dAyvP(94$+p?8U2Yt{?aN&wuq-0GkT4a!vv;i^|ODK-iu)g0lj!CzU^*_Q=~b+6)Tz4p!0zPSZ6jmUeG!Xu;9q z1}z?13KE`4aQ)41kM2)p($<@}r@g;-OS9DhQr{Vx_^4$Dd<~rrH$^nZkLTNqp#;rS zSl8e&21r*m3WSj!nBwhu74Qm3wFq|}G`ekaZD`AwNuyad>HIMUO{HJ#?SvF0c&!Zz zyi=6+tt@g|155KZpD^6XJ=#t)6ztIoPfv0zm94VRALp93By0l8L?nofft?U~tW&b4 z;0Fqs{faUO1tS}!XVw%Tlg&;EV*P26n1p&-L1dC=E^$joxEn{frMRZ#7$dQ$zd=%% z2cas-Cu(uVXkgrHXiQolaP1jPur)-x%9~lN69qaytziPs^6X3ql${b>VOwR7ZX@jL zE<=`(yLrNSCXHWUr&6kxQ0oP;pU=(skFoyxQ?}~XHd(Zy$HB{Q*U47@XI;{Cw>P$5 znW$#RZ5b3? zI#4x2O_$|ojLY9oZrm?%wxS>Ov6opPV=Dn*q30;P4QqR>EYM*tZRze z2Cb=JpMh+WsdL(4Lm zFl%iNO3|xD1+~_Rf0ux{(U4@rX}+>Rcp$)l=bjz&j4tCHlF>}nXGovDqlANOB`x(n zV4p*V*4w5$y0FuJ?^-%+3j-_80>0VA={h(i<8H%oyb`x;U{6WSlP?{Fr-s|YdBa)% z!CZpTr5}W6{XI|2!5yl81s}}57i;`^cDMQ0lqDYgay*J_K3!(9Qa)O7v_;d5S2;O} zmjK?Pr$@@8JC=`ZxPGcZJ`Mdxp=9#SFyA;gn62WUoDBtu-_2nr^7&&RUa<;|nH-p? z1T{B}N4o*xfoq#pq4s3z=U|1c*@RYq9YbRUOP!hx2EUv4=1}GZnk~^kW!=8-y>Png z>uLTG$A7%$4ic>6&Wpbv+A?)G+ZC*xGM_Mu6)#+LX+7X?{<_^~b#2DIxa&O=PT1(^ zlY0w%8#nxBuYgR5l5LjcgVU$;>Ma4S60(T`z^AzE@GPrS6ixjxrb^6 z0y<$6=-!jHUPbW6+wttD>h@MLa6ifkI`<9$hbJhK40Hd3PD7j8<5!6el_J}&Hxfu`~CUc{y4KF7(Q-`Tum30L(7>Q^_JDy<&TYUOIwZe1IxPc%<* zRk~{&r7I`%)VE$@hN-)(T|L){>&c7m8YenZ7UsJCQtk{ZfVM`tZMxq(l8>^YSdMje zc|bq+ha?N{RCTGU5?)n`)m++p$OH*lI8LKQ524WeUz2%$K11%m~|FHh`V8>N(BH8@8B$oUC*Ydx0(!PG@?rbS%61> zt>NE3W=dYrI6kd>)M5EMz!ZaR8txsB&CMdafNc{3Ag8=(;2}rNN28mFE3L?MBkr~; zUl#7{NKz%?N$w|_R{2Lh8UtkuBZ|&gf;^syw6)hNW1251Eyzr_RE8D~pe{*Sc`2{D z@n5ELB>nj#qKfIow%UAw%AMpSk2AJ;FvuC%;wEhC4in?xLY1j`{yd7Jf%#Kv&e1(Q zjuu1f&#&V?_?AR1&bK69sA-Jwu`N=q*|wUdv#8US#L!X7(?C%^g+O4*t}f6{o|vC$ zvty`9HLgKQ`ZbXp=L&-E9mFlINTlGE7Tz5EPrWmX_ zc#2;<+|rpgDQ0Ky`QA>HA>Y4b&~d@&tlT?B>q+xz0xpY(BCk}t+hyzsZZv7K$1k@3 zMn;jU8Y^&{45|DopK^AgHItVa+cU!_Z({v3EP{{h3dW5;ph5=xFShm?wa{z;wItXe zNGRlNeKr-xBB*3Z=rmo#JpG7>@MWBkt=E$F(<7S&9l#B`x$@D|d~O9{gD`d#kO)Gf z&n#$D%2}9OK9+IU;uA9;&#L+KbJht-qom16m+)b{rV8_7)^AtDF?hnr1o$s=n>a-t zme&)@vl$!0D*DGDUhJC-H|C-B%HLu26l;RQW30cg^xddp&F&jHW&JEuUgxN--&Gow zVqo{HFuxylcugMUR@a#{jCKQ~SJRZK69<~!mfVU56DSXG687jYS#>&{#foMo$- zAjR@uhD~Ma_5PJUBbuI+P(EKTb9TMY*_?C7t<*<&+5DA(zTK!R>FA`YP9@=8viEL< zO(p4WLQj>IB<=<2Os2?7!R7}Jr=!h*=e3I8J*-mR@<}lfR+L#pk=E=BxL|;mr z34zhAJ67FO_dHbf5G#MHx0a=J1Q-8Zq~o5K|mDBu;9; zmd>Uh%S<9+2SA5YbKwP6G%eUTwGt=lb@8q=bkV32L_iXA>Ec6n>Q;Lkx27@{6qhi4 z^Aj#@o^n@t0^``0A0>0cYoqUf!ZJ9K7^E{?q>CpgOYx{^E0Q3ia4XS1VTqVJJ?2st zHj1u9;&!dEDD$$h9l@E+VjHmqQKR-NFj z|3JvzK8{4xf0+{c>ypI3Ic5Fl!l9IgKVo*N^@p*e`W0dji*b2aiSxmn{$^(g`&ooK zDNIq`QJsWY#JwawkyDcv>nlG>5iAU|l3ru^a2Z{L_{*nRo%eY@wTQ8aQ<12Xo2yS6 z@ro>BWJAkZGw5A;pT8d31!Ku6NsV@NBjn@Arr4)s;5Qqscbv-0Tg?&0aY+cyo5`R5 z%)#b4`bYE^Iy#(=fsSeZ=Loj*&fc`enm{wfri#>%d50$+e4m<3-;*|oMr~Vb7Z;nR zsmo>&FY|_QvAK{=zH?d+poiJ;g-x@zZ(2xwFWTjL+!58H9kUK9%Z6P}F=+8&A~u~= ziymU5-W;=5;)49eANlO#us$l0_dMuJR1$wBP!}>7;I0Y`eG^8)BlrlVlz#&heIS12 zX{=x@TZg6@v8n6dEn*E7FdA++^w7fC8Pc?*v->nJ9L^-{>@jC#I=~F8TIQr7^q{Wj z^53Mpc41-QU*pIUZbmXj{(wsHf?#L)%k}*tCd!~ zvfrjZsfJxVK6vA!;}mFZvhnw@NpLz-`qTxXq{|~zpCXctVw~b73uBs@itw_ z{imtC`7gOTIOK>Yd`fk*m6PS8j3+ZVdc&N<*3xVrL7<(1rpfyYGIZ4zjtW8*bP~g$ zQ(`B|taP_cM_QzR$SuXj+%BtRVt8Tl5{4{`tvODR-s};Dp?s6yW~@$ zlBJ)Sp?>6&Flrooia(ZRIyp&k7rm?mvHZfY0|xO^^1%gTJ%G&vNk88z57*R(a>I z+pS~DnA`nZWlrEG(ADAwknZ5P+1)W$n>5?(#ZV=!X|~yiwRX+xYEZi#(@qu1KnRef zAkUOyxc1NO<|6R*J|+d}@~02|5r zwI4p&-;vE+7#24}m!QPBMG>QzW%_d~=Xy7yl)De!bnL%E>2uD8Tod%?zZTwZ@=}S7 z;8}3}Lt~UwKV_OsJ+v~VlGH@o`V|ha$7Q!lw=2j}#oW!#!49~MiALbDP&DRf&(m4n zW%ALi_jV`M-}icPiRZ)0*7Y*CPk?rDimwZ;*$LejR+Dip+d;(uqQ_(e5}~3iN+7&p zg|xq@RYTwZlS(&T-pOAg!dM|c7LS}6TKXb%7bJOu;mZ8u60Yshcvjbrxc#=t(5e6h zBb>A8#>_tW%M z@lG#;xRZ-q!QFg=JFaf( zm?JX4xWjw1t#M(ztcAI5rPu4M%*w%B0;3G?0bZV` z3|Sv_daLoSiQ%m7nd)P5LEt3qVXN9OO(Hw6tY*QmCLm9D^yWhs{)h&yc6vE0SJOrJQI}^`MQ7=5zzl?L?`HcqP&fR z_w&+dxI~mIP9wvVc1;N4+SW(O(lqi?!lsG|pRK!*%P2BIcz(VJRxd&RBCdtRwc~_61T!80smS zg%+%JW*h)nKSw*bnZOff9*Eq12}86&8H+vgqPVXCd(oHfKu=`>zMN+g8Y+NvIR_2*_RPZirCPE5nsi^GM5*<5CC-DJTYhi5kEwmI} zWU|SLfqrx;49>|ZfF?ha?6d?{{4fh=r!}@Ep?kaaI8hAREIlq4WnBFRv#&`QgP;X} zr|m()txKy3yPSht*v=#hTKT|D+_rh+1P3I?i&m&Ybz&}uuK?rlN&RW8jbUN?skuU> zG2BW(IFGd*d~2u{F9nhd>^-=Uwku1?%`aQcf^^h(E0lQ5Xr$*`ldw;Egv6MVO&xN< z2!*nhi4sp*^?mgT1qx^FDr2AP&FyN}x9$1>8=R@@5vXZ1PyX=U5n1l`I*V-vY~^lJ$vFW`ToUFh6Sc=GjukAv zSB0$2SDF;*?FvbN3q;}6jZ)0lMJx@` zzbA5SA#B5+LKtO-!m58uumu=14tcA8rBBS@2Gq^MTxpoEB$zqZ>$SLa4q8X#_53=Y znKn@(6uY6&*WyP{8zO|ACU;;AS1*+3uWWAz0Q16xHC5Sa6pIvH4-vXSYAt?E!hrTm zZJG+ZgbZNiLm)yizy08%+91H7qW;192dfNdwVriDh#bLTzEg3kY@=Wow@RdB8y5SH z5-^4GCJTXpMw=H1p$KpHrK(qmO1=2UuS1!Q&NcCxeozfnw{iEHto>XSEWj5G1)rzw zZR@cfP2*v-x*xG$M^mZD(SCCs2>(3qa}S6_@*}-p{(5mZqjj0>cIt`-R4)P?$_-k=2*ux*=M`XPBC$mhF()ba;&U#{f?9X5aBR z5Twr?H!HzV;qOeQnhaWoEFoStE;4>3H$XbV|}&t+?P>bl0So8x%Nq4W9r-A%r4}1>M_znb8F= zS`NJFtWH&$pr_D2B= zs&`GU;=4Eo^1ls&r7TEWDhYCCYI+l-qz!^W{iX$$K0B>JoqMvyir{qB&sod^j>3{{ zpulo8rq4`#)sWD7jqUuDk+;>?c_3Ok@S>Q2$e}J7^X`SWG&i6QB3I%3~4#cKfcHl zZ09QE#m)ur+r+*dBC-BvO_yFP01CxF6DA@e3*cKEj~h1~o#Z#F4vcqUBS^AJA&FSH zb20#5yRq|VBEL8ElUH@jygy)9++m@gOf|=R8y}2hH)r6zIcioZuO}`sOv6|+cQBq= zcEt%!#jdvpUIxsp?_JPF?urQA$Q-QcmKbwoy@FBO|TcQl*w`nm_`c4)SsqOK(J?=|LW|zon9pVj#6* zB~YEj614w)5v5CGTU5APV%^yH!5*`xos4z-HNd`PVv{|3pDUZ0oks7GLiL9Nrhe`Lw zwkmi!a9`b2PIp;f!ykqn9R0!IJ`K+&aaS$=wnF=tZSfU1^3JaMCL0Hxv8#|~WSB>uOm!PyBWo{PJGr8?WiMW1;UJwL|7CYXGNsSOR zv)={Ik=!&@JR$JlEN~!HjY@f#q>m)ros~ATJZ~;xBmn77e`~P34f+ZWOs3Y|A76X@ z2*kiutr1;DwXR}vufopNa7j*g%eEU5$Uml~&(y@8O~~mbWa(4((v8|GUh;Rny<>T% zz+9V^5AL%|eGRVcMp;@IY!SeXi_*rt&bYpx>Uoj2-BZ;f`6pDWAx$3(>%9Q@0nS|~^BW>#2>xNdm2hhY zJp0&!>_ng;VUV*T$9vV6&4R)}&+8a+#9acC$%e^eXxNt0c6EM-mXLFO0BZg_*uD>O zdaAVh*2DuCC+l(JMhlMF349Zq|6%N9j)=z`w*-(eBp9)BJc+-O^h5@OM+r9XzJ!=g zscOO7Oi=l!;W;*KxvQAyh9%w;sCPO$Oj0b?>SjgiM^2y98`Pv z;=f}|Hea%p`D?`QzxO`2XgPufAk9XkpJ^ShT7o-XD~*ruh_U2C$gQ}tA7 zouBHmCG|Q;DZRot<9zQ@l{|@GtC_1DwNMcGz(pL_gH4w76*FI!3eej$xF%vyq_v6c zij?}d$8nF9h)@X$!4p01+C-q*n#K!%gvQ#tYU>Iy%L=hhx2)&KsWm_k2rS{MGLyxg zq4hX7)~;UBd0LV^VSMvRNw`)#rG<0G<-QNgq!*9vrJZX#k|v~xH#!+C<(hKvJ&4;5qHmt*V@*eLF6yFqb+4{{@ z&i-Smv}JI@QkukQU>1>{o$U-%&N zfQaqTNy>&Z6{T!O-q_;D)gk@Y?8j|pglfuO2J7}H1>Demq(4e1)7!rcP1jrv$i#5L zyi?W+_6(n1&2a(7hd2(|liR=VGBkpfqk-4=Td!iYfN^<4{3ocQkm;-D02Zc9FLCP# z=p>kfO0OFkb?L0As2<8+A>cv~!>WqErY9|V-sq*=oXcR+*C)yVxH1cJFOwE>w*c1> z$Si@GPEqKd#h(*vH~$Uv|C(uMIIz4&xY-$q_(V$PcLxawY6){E z3FFl9L!$dD8&*|`LK=PF3sVwEbuke^}k^T_4kd`|%+f zwgMFYHPh>5mFo0#^>_lKf8H;i^<(sS>vMBcfqk{^Q^}dLliyu!o#Cx|-4FZrwzLn& z?wpXK3I-3IZ)dF=br1%NS@)=c-x_2I793g%Fz<9#cx>-lHDSWK=i!55Tm_+2DrkCc zjzf*Jsa`S^b(JG;soeTebWwLTT_xl@@t{3LAY53xOQ8640}u^+8}86h$a(5!SW1bc zGi%1TtNBq6d|gY8mv-J}*u^ArN>|Kn2=Uo@VgDL|4`v}x_AJRPawyy*y8umh^Ci>L zbl-fsJZ4iz6v6!d^M&^|1K08r=;N9*J)~M0YZ)`_6jsF0@l{D!y$2u1Q`v(ZjaoL> zw0}S}?=cnbZr;+$x+Q{|9Iea@t-aBImp)d$rZ&q}{t2@eUgv{)X=&AQ7PUYtmW-W{ zso$(Em)|lZ zs>`G;Jmn+3Yu8@xYs%rry9Nec8ckmvn&qxb&Gyj({}wUDGf&;hy3 zhxi!J2N`fb8fe4kHZtUs2*xNJLPDmEcu4PwRHlLVpF0255Xf_w`VY|y8)RHF?AL#c zkuZA=WFE~g=t5mSQFlBLtcjo6uRsu_RIZT!4b{TN{J)@DSXp^kSpWa4NqJZ~dH!Eg z%atFDpPEM3D-W04U6HW09LD&#y_{a+l8J3?iZP76tlCluxiuVw?DAn5f*F~N9<7|t zimLK2os`ibVpjgKL30cI0cQ*J)Y9{w;JsN>d`n61*!cPIyIEf$`q`@=z7t?}DSAy% z{LjA|3I&(z&J({6k3R7Kuq_CpbV;Bj#XMA=bFasD%n#5#Rk-@K@gs17ZUe7EC|$*E zN$r~ik~?zHar6;(0$qy)`X&l;Kj?KY#9>n1J)HmXR=%T+4U2@JS2qdN5H@OAmJB07ME?nQ}zJV!e3-gv`&f3{;LLPZdb zvzH1tq4dW{Qjqge^Yc*i_mzwCg7)X~;D*{dNYeXmtH+0?Mtg~1_ve&6oSh=u22P01b0@WoKF~Yg3vs#k{ebl&{Rlq5&rH!>@VN1 zf(UAW=R=(~gbDrtXJXljr5ayu_heRG)7)EY^*7d9?G)Wl!$w=Y)k;TIJFS~1i@c&L zzwQBGeu|91ZY-ps(C6#iM7r2hQZu()8(8oxWXY=__xf|vDX<(F98&!u3)as#X~kHz zabxAK(ntOcAxDke@FCf?-O#`-3YhYVUga(I9dSHseHWC%7V8-` z*?KMwfdKB$Ggrqit^r>g-roYziA#uC3Y0zyF;uFM>N3nTG5tu$V2q_-%z6Cg8*Nin zWKw18GY$c(7N*bP$1J(I7?S#WFK!hEx!C6|Cp)3e52&QUP{NM?wZ9$3cu=0o9<%BhkKP@-DFI0ub!*pV=uV49>);YXJy1aWQZo*2u4Y;!xkO_`i-pQ!^M8C`YFGHkwkrEV57+p(|FR{nr* ze!S1KBzQSw)B#=S`7h+-!4jJ6El@dElkF)fqUTT=XW=I~;eyUUcU2pKzZ+L-=$7`k zVf4!T95@*azCUnnd#8=7>y0>y!T$kXimio~(oK8*zQh+>#JijqvP8kWUUxHOwZJ<} z?D!0C8n~Y9?F~!*-1qTa;|tBHb8@noo}OlQaVTkM?H7uXV3QD86)Ic_lMPyqBhyCh zpihjYOqyGe!=pt-0sQC~4Suy%*cwPVOf7?vZu`NO5j9!*%#S&jh@d59)h0=oLE|J-B&lJi&Jhq6V&~_s@+Q_ZBM&NP?1k0mTEu;pcO%95V z4Y;MCo9bwZbymuxmx@Q9%YShaz5mmVE<_L@hd<^q&LqYp+t8pY^SOv9*q0z#vSlT% zdibk^Jt#f7UKtJ^^FF-UQYpel<4oWL!|~;i0Qq^h%hc>-xS$;Y88D<10ZzU@c{e;l zk0vDVb_@>LH1lo{0UJvP-|eA+4Uf^?MHFy57}?Dv^vXPjBveuLw@=MW&+B3`7yHH! z^zW0*n%tH1~FF)H9lZO79{_Q1!7uswn@++s5^g<)zwBCnh*ic@9-!9%%| z&U|0!l{E!kq zjbBSao@bVK_6Y_s;$$xHctK8&Hnw?2N!teN6|Bd9F8n!?nUO}L#C7dG?xs~R$l1hi ztZ{owYCn^Wi=SI9@+Gj}$@%xx;U3JH5CMh|JQuf-zC$G_jspm6y9$otpSXyyJSRgn z>Ai#qM4knJQ%C)>o5 zXvy2d%lGeZ&{(XQpF!Z;L+0ABbrj6i)zHZ*&xS4E_eK2$Q4+cR*N!zbDmDR#4nV(@ z5||XW>@@Xjv|fxTXHXP6r>x31)g~t;a}5mY47xOQwq&H*)LOnwUbrioD2<;Kf?JIc z&Cn!*OW^&Ka1W}!|Lyp~Yp^U*^8=H~sL}A%?W)V&)_G`1_Ccq|IK4VnCF{mD%Z?@iN&Llb;R}DZ+Kz!}=gPUGa9CgC#Rd4Lr_K9C9Mv)9 zU_h;3dUR&Sjn~t~J*B-q*o0GE)4nTFf!%Xn@gk*QF(;yggq;T5yaj*y5V^nvsC<1> z^Oc1Ng2zyIN+tv`aV*NrRKb1~#{(WrV1cnQFUio2TCWgM)rdD`; zuPt@x=zXe6XE*sce{}_YF0c7A7vt8;awBIWJTh}~yw@Ri2Y4WyHU8Cj``slK0pvWV z(vgvYvkBx__fTT2txDBid|MIde1eJ^eR{6SD_4~-O6AaUG6Dr;CMD+$i69`MmxcCx z2S0ELM%hG>mP=M9I50ieHs z;55piF=BJp_A!%v_|}L_GpfUH>+` zTKrJz$+VmW2jkEXY#HdRD0NSAos+s)D=nKPcv~2TLL#&iboWcH?y0HK5n`h#J*|Zy zyBP>B(>lqV>FZt-AU$^P!8xQn`#h{vt7_gk_`@L&>9bidN5;Z{1UUD-XVH(bO@Mjm zN_7{&9BodYY()Az>)97;KKu*2nZW1kL-Naq{;&A?1OQqyVmzUs--`o3__(KFcq9d~Oft0(V~*Ua2_uDt z)MM^s6jhs>VvC@}u`k{F?;eXI-$4D<2&qu+% z5U0H}|Bt*e&waiZfv=gfe=yzQJLQ3qO8H|?|1GW-G&&Wi$AwFlElN&yMN$_X`IK4l zYOL;h|6AQ$-OVY;=tuo|5;5L*Zl|;?aY7o4#lu9q_A-M8+-Y*Zz=S^u2RbBP{{z9* z4h_k`2$N{Ne^{_ID4bWfMDobjhyzqH9{Ff$sl+6-miiS~Sr!3dMSOP!q^DpYu~uJ%YD zld^9uEdXy*4?|6)@cB+vCWHrr5W5nCo~@Y63*mBkNf4hf zIH@TiV3?HVbT`wdLAj^1x9)|T)a*9|fkalW_i8#N>X!JW%?#CShRi#v?Hljtcrk}$^Q zY$UeW^D)JO5ceV7QWfIQ(@Avb-G@AZvQPN-G0LSteNkIh{ z_yuruJ_Xs;fwH`MQk~^fi1pa}MyKY^%?Z1~ux&4?*bEZa_Yu{sDE8rP$kaiyq;0l7 zkZgv@o*81ZwMf}ZwGVt>o@!faO3j{WCiHs^WU38zjo5hf!eOK{Xzr3Pr_<{#Yl-y+ z`{Q6#&BS%OwKe^;T5Mxc@3XiOB;(y@<1t&&;`3n|NF4tjIez(M?Pasf9%rGe_WPYZ zwp>AK1xrwQQ$+Agl^l?OC~P0?HwO(DSJM50?iuzRiznpZ_i~VZ+h#v>0(WkQz~Sy5 zljr_-^6XLv;G7md(l;K77(HyuC-@DDD1A5FQMY}#b=T9`?J<`PCk1UnBcHjCJ%LOQ zQLXMwZdl2>ybPy~+_j7`zRSL%OwE6TmB%!KF!U^{zc-FCCDiXx(5_0@u^?HVAC=S-;eqPDsx&|WH&G=o}2&aOwj%4&KXBUjz*sPbr*y+69~S}1jmY41t3)9HOmfAR5hE4x1G=|!wc zhi5+;mZaR)iAv1Sy5y8_=y&JccPYPKd6_x)M$#p%I7dl0MAAGLl9r_Ab^w`(lDvSa zWYx2eP&VvCp%j5YDLE7o^(2HwTEs2+ZWH&N@MFtI&~AQ4mvvBM+fDNvHeU8+mSxqL z(md{?+E$?qR|!M2#pbD`f@j%sNao*qO($eB&wtKeTAUTePXqbliHL_K;rV)ysO^BK898SvO z>ea)Rnw_i!wG|C-W1!QORjb2k_$p7Zj570mJYGGU~*#Gf!?rL{?NjFF^z#K&IxnDbl`g3Dz?UeT0$7NN?4kPz$+Ii9&zlOc2kk^fv`b zdd@KSLT!Pf?X&d@P(N;*&>6ZaavvQ~itR%jDiL(_0#P+h5B$?2;NWmPvQ)%NMW3-T zd`xpuR6x07M9V*xi{H`kU{D6C^VB~Kt#d$BE@X-FTSz{(Bj0wXbE=0CU+d@a=<)No z=Xmu2i>!VA+RN(FKY9KR^~zs*23}GfxeQfeBLhS~`0?1=?9v5=bj@r1e62NCFv8~~ z$(A_u4n(s`QaCdGk+4*F2|o9_LUW!0z=kRhCnlCmP*8m1F3t(>o}8OEd{BHQK)&BG zryzpGRUs+r;?_KP?(KFNumbLeC;t=9oqliU3(7SvEnK_MJvq$SUydIsOSK>md{5K? z>Dj_~KPPcWKWAJFdUa~>-FYH%__}QaKwQ1oN-DGxBsU-^hB~<@aw02KIYXG2c=S*f zd8$Y$a0f!5ob6jTZo=2imJA|8akKXo8nz(aS(Q2^`@k>$0P#J`EpQ}Ua{(y#vDUg~ zIzUu$%Q=BPcH=h>-v6725br~&ha(s;ONSj9{-D0E5G=eAy>YL|UQ zIjl|QsrX$%1&{>*15(eNnq_qgw=1?QeI!0LHn;2>_b%)w_gqGKFrIJo3IvV>q62lY zA36nmdr5Co>|3R~hJ7X_RHserfnAv2iJzkT%L6ST=y5kWUyfU`ZFStvGqiHM9yu!{ z@b>Z>5^0OBjYx8kb9|AHC5@uM_wN_d1SCI-Syc1-ry$K?>%%CMMyQ;qmB^z3VJ6Gs z`vMgB#xyYyg`KEOaIJ8@7Shoy_yJeh%Jk8p`TdDGi6gh-oTqSoVaYp`ZXm<5Bbd>B zIzNzsH^&R=!1nNrbmLBKC;@4ZOR)H!Do@IG7witqY!r zYLQ(%s=bZ*jAPOD(T5J?(qsE)TJ5JZ`h+LP)mJpK$Mq(T*r}1s@hZSGLlADh%(k

    Ypk&hDymDMu`wyqG#IAYz($sey-(oMmBB;P zmNaV0mO zihC=+$wB-jOxQPQM~4fbrglp19qYRdx6qY;eP*6+Z92#z{#L{d*}A822l(~eIqP%? z=m#RSbt&p+)Af8H=HQ#=!K~3vr6^ag6nX*{=fV~~9f58T{_C4!3Er<^FKS9rzBVJMLk7KjGz0^K^39G-4d_YwuQL~#bO=j8)4|7k-% ze&rB>RCgaZ`dNv5z(WiT0YsE`0(mslB4$5-0eU_kc*|9QkG8{4gf-e6~69LPhz6sLUA=N0R%U*m}wMbuy~K zDvHav`ph$>B~~0X0gyWGb1E<6;Mb{qq@cn$5nn_D?jJFw#rL}QWCBY0V=yh3_-TZ? zPEa8_6~eP0!`Svtp28Nf{g{|R)1qqtaikBj1Wgbc8?>A@@pe>YqsJ= z5(RD1wt0M6BZx44G%OOH@MuBUubQY|`04~nUB3|h6;@MA9!Q#tcsHwS=dI` zGbrE~Q`Kwp<>;pavWh&}Kcj|X{ZEL*nUTh;RKp7|FeP*>>Ek6TleB~{gpc4Q3w0Vu zFq)No-9(F$#+LAl@BdaNGM6Qr3X?};(RmDqa5gAOhWGqYSoj+@UP(m88KPPK7}i3) ze?pzxr*=o8G%krNOfx0v%wh*^c>9nn=G$Z<@#Zq`JyR*{$X12N7u~3etwv;bn9jdS zWa4|8$>T;jbDIQ%r37<0A^TkVl!%}-==HqSKfuGeQ6j35e!~35`&yjy*2x~ROg4^S z%xxahIpaezQb?*igFl|=eS_MVnk=f!+eNH-O*DN6yHQ)pvH&?dKkFwTU!hMcPYuyd1%8}jwm^hTHEub7_T1Dd#M1U-!t&X zZ%Tk%X*j6xm>H$4c3h!*7oV4efM+0)Ohh|uBn;k0A_rvWY43EdEAG`WdB)`IIW2sj$d|DTaSM z#h7wI;6M*;#H!@ue0N;oif~P{#6wx}n_=sOIBZ$c#Uf@2jcQK=!T32iGPkfg)0H|L zx{~LD6l%uc0-{>oiXZg|9qj=t4$twgL3?gCM=`bNcng+}tEq^H=J{kl%wV&*<}2QF zqQ*UQi7AcvMp>uJ<$q9Gym*n#UD}VL6$p$jk!A%a6)Upmj`iTML6yk#)u7$G6F=j6 z^np|E68G&$);**t_4KEPfwlu(L?80GBy}}9WD7svLYGH~VJ!#N+ut6H`ldO1`3h-B zUzr6>rf>e-#k$S!c0~y7UamOz(^`kHl-}I44f5>bEaicsoT-$Zw|FnQ$gv=C{)^7` z_rE-b-oG?|pKYiRGW`uJ*pxMyCaMn=vuj|{9p|a>^;tPJeXi=2`Xpp4Ay{g?dpmj) zug<0|`fR$uki)C=z{s2%#!)1$1YMLlKs_+C>p zG-A5otF0Y+a@2gMdq`gOd6z_r>B;Uv_Kf!FZ(UR~oL{-57U^;BNcS!d>m7bdu1WE( z-PS>#JvJo0)j6lDr}znT@^#(cIHjv!iKD|H?Z0+O4KHSMF=4&GbWLBqwo47aTr`Qu za_*g`LwQfuA-mE#XR6mLoE-8t(jiNk$b-&HQLqp(x7_(^UEwx-2fXrCx(?~ibMJkb zcN0HVbQg*voMc|({k-DpMBDby>RLReN^O=x&Bbf={NzR0)!fE(G_*TEW;WTZ<^24m zP6031@)6HQG?dH@?8BU5!Capb-yu0#9_rH{{k0tXwO;Gx*?uz(Xx8zuYjT5$Efc2? zVWXiPt43AN$j`CETh}+P)e*jTW!n71tMP%D0Sn^uw@%`VP{&^u8k~OJ;rHq+am|+% zw~H4`-c@SfR`#9T4|{J0ZqTY^n73+|ZR)kD6?AK75fkF78i(r!2LWB!&S!?Hz zEq*Ubql%IrU9;EC>}zh&BUishvL0mwa_0I*tj0iCH?(D31SKMwS5K^=K^SdHgTnN0 zA`5=i$pEX%t&Z<){@Kka21ouo6)_MmVt3^BsqF{B(`P{*M^*n1g7r6i-&MB1wLANN!yM@evSP?<3GMYG&Urd=5-)(zl*q2sE1);{suok=&7?a0>37)5@HazvHLbnPP3%+ z#vnXCxi2Y-jucoB;W%OX2G1LP$F5u(i`%zLU^>=|(DGlcUV$>CHkpzl;2HB$Uy8GV z$zMGeWUvEAk-?3<1-HKk@GQVmXwaQq$WJHcE)%h)>RPO-xt#I-4zkz4`j1}_X=JfCnz z2eM#Xs79v9UY7Ptwv-VmwkuDsSv;q4Y*K0YY8Ah|5U}c8nW4@I{(y`Z-%ec(sv5tA95}2QjSrLog~iZ6QU!LtKv#d;Ls)M;-ab4h zK3Imy-B<>Q5CD>P3xU8@%PJHSm)g-_IS-qsO{kOLnn4z#ha=G6iVGi_v$Q?>4FWDs zar>r04@E{h1N7)5?r&3@cHia)02|ZCxFza~v0 znOO&D^xgwg!o3%>h;Z%@;Udz+?+`9rAA|CaDbAQ~12W(&KS@#*B(v~CSFTgkOZOVV zU=9_3kFm<{xY))$zTq@*rWB*Cz@^H9ev%`wm%Dp1!K;P=#PhNIy{9~z01nvG`fG&bbXy$X>cdn!qh zu2N>QU(sW#_m(2N@{lBJ`Iiv>&P9r1Ij@|YiUqZnv2b1yvkH04u83Ff;5@V??mQ%_ zCbsFUB4*VKKyoDpATcguia}xUUZ}tjTv?*>UNplH*Z>71NWtW;uJ2aDWaM@EVAEo+ zTD^?*#QQR*3B9{S?j#F&nz_7H>#}|N03aOe|Do%?>tP->abR#dW+7Ik7{6nCb1DvX z<@ip%egnn37VZ8=K@#JC5+pIO{=WoC>}>38|A!#y4~&~KApLmLounJum=FOmJ~0Th zV36dXT%b>aNkTLsog=-=FJyCSb6h$tmDv@!;11b~@UT)nSDck-y{6+++oJO`>1m^8 zy;`KcrI@zaqO!S#+H&ivWdpi>?K{i!`i~(0FRzOq6{*?LrsM4EzuJ2GGe#U13n5jZzGpFkm;KYYUiQh8j+?S;8&+_ zKe2O7yMeT?TXx^5o4(|jw~(N-wP0?IpLYKUklBP4NG<%{2?lteV16@-;=k~0ego$p zvO=C;AHfrW3WiV(enRd_CE0G#$HitwBf1K-$eJxVW_{_P=6pb9q#aRzFYzak&}}ndE1YX|0{gPdIC+=fShJT%aDYY3FhVDLRy*TyN&UZ zTb}CuKoj4THZ1gozFk;{FC~T(rtaHxvw0kASh`^@pT&tnkerh2Sh|bkx6a zd%P8{n17O{0|LVY>)rw8u9E89;@po2k8+It&=?Cw;lUAJBBtWH;YebAZq zwGnL~x1BcyPHlGf!D^kbPm!})=`mO{c7}M2Bdc@2! zZrAvT;`m-OOu*JWiMCj7eQrop;92g$d43g6#*S?r>w<`3{!}n!<4iZ?IoZ2*UX&dM z#``HUT5RLBUYGV!y-yT$18WH0D%;WLwb+o_*3-KcUYV*jL&L!`cl8nN7`qTpeq_=J zK9Bjg+}_lwgB5Xx^dY?g-Cq9YQ4wHDm9OBfh@r+SL$-&tm@!%W9uK>R`qp8RVPa$I z(AZGMjQ?we%rv{qrZVUsM)>p&N#%7N+`wVnZZ9(PLwWAdlYmW z_eah$GR~semz4K2M+j2%5`BO8S4_SSMBOMUeEj2>T@Xt2!~?#G-bg7$+}T9eZa2t% zA^JUz7y^&mVIlsl&c0auvi!By`M%p+&|CPSn1TkO|beI%TI zWHV+e>Nx;E`6GCtpb?y#I8<173HIM5jDzFDfENKiu=WV+h1U+w_VQt6zRk$~Hxo?y zN(A^7J$IAtE_<;=>lHeyfkv0hhUQI=+D16vLz`Eb*T>E)m!_@W4u{kAo{3^9>i1>3 z>Vqf6>Y(#f+DZhm6o9SnPlDr}PAmjW&b76@D}7Iu?-rh|s8Rh%rfb!CFRb2=xS+OY zyBJ+tL4ft1a4ZvaTM8A&>`GeMBAP#olJC%PDk0{qhnvx%{qU}M)#+dN%Y5y4t#!M> zKAchf&W>yZl5miLgVA%*x^SD6oI5|=ZpK3eX%jye5?!^a6t&Z z@(iyw-R~=>UmaiRX&hYs+)e{3&5mgXI9c!MH0|uYhc`dc*HX1TFAE_$I&Z3QS!d2- zfP>xb3X#f&)g%S|uhiR%2O1W8B1Q-{&bDP5?;R$c4qq{Dy1ip%v*r-I$d$WMjk0qj zpCsBh<`Cu_=81wN7xr1;;)nY#aA`%$1&>XY+MZY|Q9^CoUyrol$yICJl{+kkBPxql zBPwe&>uvYUiDwO;h+`*E?!v|JXx^55@B?^5-6qi%OoZxD5TPsH3fUWmJd zw`qGnlNiEQ9(~Wt1q3j&z88Mu4xA(OM(KG-Z1db!`|1+&nJoQly6i?^v+dt#!S}S? zkm;NJ(~iaT4~WT}5ylQ3V}${XQ;;9Q+$8l}1y~{_RDD!>ec0KS( z<(jsw&H8tg<$GbHq zd+YYDcKhaA#l`y*nzP!|xhfswyZ6y#eV5AD`Oxn{q}bzQ*XLR-CeLE$$j!+8`G#T4 zdfeNVFR(g)tTOFzd3RA2MOJ+zR?%VjGdi$vRfU4TlCw+-j-a_aPdaL@q;z@?)vaqG zpm*KXm1?%1q6|^DF0jtVfIxcOD3{?ss=Wn?nvac3Q8*tCNE)m&3jtzMtZ(dWy$&))Nq zhwmKP$`?1lp?BVHzwKYoYyA9s^EWPIYp(!2Y)&GyOJue(PL9>grZZ`LifYkYSD|D+ z!_B-(FoRd!RRO1Zn*QfCzcNOC<6!nHqBn3wg41Teo(y+IBIk#D;=VJ6+PkDs`YI^6 z4|%Xwlh){Tv%O@kgytUQMAdX(x=dO>s!h}9Bt~|2KG~U!jy}U_PKb#C{n(%$HE$rw zm?ak~A_TGVo61!4sM=@hT)d?_6nZ{SYJHqhV>c;=mmxwwZU>1AF=JzJW8OmpYN-1T zbw3%=>#qR>dR=*{yi1zeP2TSW+gm+&(0-PE$>u?97y8SYu@n4zuaZO*bZpZKI`APX z9D4Qp$iqeDKu(P-Nm>joNwu7Jsvi|^Zzc;`wg&&A5#MjGxDRvXtPZj5E^D$?R61&R z8ir$9CebHn<%aAJ6=(TPg8z(6YmvbEoTd(**YApdcMR^TTw0(RV4AulR*kw1`dKBg zPjbfD>GEC85y%^rYqr-rSD7*&eSKm+M!4<_0(VT5oo(ln$^Lr-b}#%$>xvg#3yu4d ziF+bl5;Z_$ZS8R4D_3-%-oxFz+Ml%#e%d42+)Pks#>L&}Fu8wx8R)#$Y`+t8>-m7s ziS^y6b1+FHK-E=T57DBhA0xo}9DnqGlmjk_``~gV-4>Mt=8vy&o2gv=<`e63%lwGw zLLt{5uH+tP!jc%z`}!6Y^?N zY%!+Geh@q1%XjloQP}rI-Fprsb-Pi{X*D^Mc?+V8+F~S=cARvzF#dyM4dvfhs21x z)^r#<%4XC5GiCLX*AA*Jg>A2|AFP30>?oUIEMn#8T=g=4UKmbgzjS!G<)@>2^%B@k z8K$d7Uu(MOXC^pF-2+v^*GFL+tv$X)MOl`X{Zm;ePta=5{h5{fz5QSc742qp7z*6k zVhtvhq_Mi<(P>pWbol=2*+JDLAxwJ0S67DWx`S5ozAqq(V*mH>G{x`Z5r#dEF6WC(U!a6`@xD0ao`*JynlDD%m;iElOFQCTLgP(lPwWF z?!2V%SHYoNv8XYSIH}Vu0z^-D5wP}p(C0V4yxjBl%=<|3LU?fqu~_W+$7XU z72hrAc|y95d-zNlHAOB4w-p?FsN)Q}VUy;aMOJ{Wp3LLFJfasv3`}F)FGH_+K_&Pr zf|t}wI(F{;`ezttzSx>fXMo<{K$A1eyRyx!N0vrCBM0Os<6z^mZ^x5}&W0S*xCK4* z&&jb-?=X05_&jnr=fC*|%x8x^p*c&w2#?r;Wh-t#cr0`xT?XvfLC>8x+mP1~(eLvD zpN@akpUqaEVLcR|m012k)&Y(DF~aJ*@7G;T-HOJCSltg{kDuj0z&p_WwINNIvp1)b z?+Uccix(?+;{&Mkyer#vPDY2m2UoV(gnRb`AEfAVEi`bu&a=(qL7-A&ht9Kqpnc#) zjheR0>B51ZaBQ<|*J{(VYpBsBKN)eJJ&o_t>HYC8e-glngaB#dz;VOvhY*MS!};1+ zHQBWID7pQtTKfrH*7Qfu5EuTe6w5m3!QTk0&Yjm(Q%KDr)EKEo`8x!E{N6Y}_Q zb*>WP#8nvez;vxJ0_}*~D2j>xi~bzMH6u!PCFAS`teK}(5Mws=b+)GkxRqA!zL-4Y zfY7PCSUFn_dYJrz#jO8=;g<&+lpV!9+!y-6Tzio_QxAnq0o3Co*_3m!<+W$2;o;1a zZpu1mMMt!m0dB#{a^B^f{}dMKwo2m73V)f9{y-kmd+Oq4%0D&m<%yySD6oVW=JozQ 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 literal 0 HcmV?d00001 diff --git a/addons_extensions/documents/data/files/mail.png b/addons_extensions/documents/data/files/mail.png new file mode 100644 index 0000000000000000000000000000000000000000..1b4df33fbb0dcd6de37b4fbb1b42667aa868d6b2 GIT binary patch literal 46675 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 z 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 literal 0 HcmV?d00001 diff --git a/addons_extensions/documents/data/ir_actions_server_data.xml b/addons_extensions/documents/data/ir_actions_server_data.xml new file mode 100644 index 000000000..e39a7344c --- /dev/null +++ b/addons_extensions/documents/data/ir_actions_server_data.xml @@ -0,0 +1,106 @@ + + + + + + Create Activity + + + next_activity + + + + + Mark activities as completed + + + code + +for record in records: + record.activity_ids.action_feedback(feedback="completed") + + + + + Remove all tags + + + object_write + clear + tag_ids + + + + Send To Finance + + + code + +target = env.ref('documents.document_finance_folder', raise_if_not_found=False) +if target: + permissions = records.mapped('user_permission') + records.action_move_documents(target.id) + for record, permission in zip(records, permissions): + record.sudo().action_update_access_rights(partners={env.user.partner_id: (permission, None)}) + action = { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'params': { + 'message': env._("%(nb_records)s document(s) sent to Finance", nb_records=len(records)), + 'type': 'success', + } + } + + + + + + + + Remove Tag Inbox + + + tag_ids + ir_actions_server + object_write + remove + + + + + Remove Tag To Validate + + + tag_ids + ir_actions_server + object_write + remove + + + + + Add Tag Validated + + + tag_ids + ir_actions_server + object_write + add + + + + + Add Tag Bill + + + tag_ids + ir_actions_server + object_write + add + + + + diff --git a/addons_extensions/documents/data/ir_config_parameter_data.xml b/addons_extensions/documents/data/ir_config_parameter_data.xml new file mode 100644 index 000000000..79f552708 --- /dev/null +++ b/addons_extensions/documents/data/ir_config_parameter_data.xml @@ -0,0 +1,11 @@ + + + + document.max_fileupload_size + 67000000 + + + documents.deletion_delay + 30 + + diff --git a/addons_extensions/documents/data/mail_activity_type_data.xml b/addons_extensions/documents/data/mail_activity_type_data.xml new file mode 100644 index 000000000..3bae577ba --- /dev/null +++ b/addons_extensions/documents/data/mail_activity_type_data.xml @@ -0,0 +1,19 @@ + + + + Inbox + documents.document + + + + To validate + documents.document + + + + Requested Document + upload_file + documents.document + + + diff --git a/addons_extensions/documents/data/mail_template_data.xml b/addons_extensions/documents/data/mail_template_data.xml new file mode 100644 index 000000000..6ab9a5d3c --- /dev/null +++ b/addons_extensions/documents/data/mail_template_data.xml @@ -0,0 +1,252 @@ + + + + + + Document: Document Request + + Document Request {{ object.name != False and ': '+ object.name or '' }} + + {{ object.requestee_partner_id.id or '' }} + Sent to partner when requesting a document from them + + + + +
    + + + + + + + + + + + + + + + +
    + + + +
    + + Document Request:
    + + Inbox Financial + +

    +
    + +
    +
    +
    +
    + + + +
    +
    + Hello OdooBot, +

    + OdooBot (odoobot@example.com) asks you to provide the following document: +

    +
    +
    + + Inbox Financial + +
    +
    + + Example of a note. + +
    +
    + +

    + Please provide us with the missing document before 2021-05-17. + +
    + --
    Mitchell Admin
    +
    +
    +
    +
    +
    +
    +
    + + + +
    + YourCompany +
    + +1 650-123-4567 + + | info@yourcompany.com + + + | http://www.example.com + +
    +
    +
    + + +
    + Powered by Odoo Documents +
    +
    +
    + {{ object.owner_id.lang }} + +
    + + + + + + Document Request: Reminder + + Reminder to upload your document{{ object.name and ' : ' + object.name or '' }} + + {{ object.requestee_partner_id.id or '' }} + Set reminders in activities to notify users who didn't upload their requested document + + + + +
    + + + + + + + + + + + + + + + +
    + + + +
    + + Document Request:
    + + Inbox Financial + +

    +
    + +
    +
    +
    +
    + + + +
    +
    + Hello OdooBot, +

    + This is a friendly reminder to upload your requested document: +

    +
    +
    + + Inbox Financial + +
    +
    + + Example of a note. + +
    +
    + +

    + Please provide us with the missing document before 2021-05-17. +

    + Thank you, + +
    + --
    Mitchell Admin
    +
    +
    +
    +
    +
    +
    +
    + + + +
    + YourCompany +
    + +1 650-123-4567 + + | info@yourcompany.com + + + | http://www.example.com + +
    +
    +
    + + +
    + Powered by Odoo Documents +
    +
    +
    +
    +
    +
    diff --git a/addons_extensions/documents/demo/documents_document_demo.xml b/addons_extensions/documents/demo/documents_document_demo.xml new file mode 100644 index 000000000..120b5bedb --- /dev/null +++ b/addons_extensions/documents/demo/documents_document_demo.xml @@ -0,0 +1,122 @@ + + + + + + + + + + folder + + edit + Brand 1 + + + + folder + + edit + view + Shared + + + + folder + + edit + Brand 2 + + + + + + Mails_inbox.pdf + + + view + + + + + city.jpg + + + view + + + + mail.png + + + view + + + + + + + + + people.jpg + + + view + + + + + + + Invoice-INV_2018_0007.pdf + + + edit + + + + + invoice Azure Interior.pdf + + + edit + + + + + invoice OpenValue.pdf + + + edit + + + + + Commercial-Tenancy-Agreement.pdf + + + edit + + + + + + + LA landscape.jpg + + + edit + + + + + Sorry Netsuite.jpg + + + + edit + view + + + + diff --git a/addons_extensions/documents/demo/files/Commercial-Tenancy-Agreement.pdf b/addons_extensions/documents/demo/files/Commercial-Tenancy-Agreement.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e63341a6be5166f65c3278a4db646f5d2f8f6ee6 GIT binary patch literal 142753 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%0D2pO-{zd*gut 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 literal 0 HcmV?d00001 diff --git a/addons_extensions/documents/demo/files/invoice_azure_interior.pdf b/addons_extensions/documents/demo/files/invoice_azure_interior.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59878fe1a78544728e029611e57ef4004b0b1c1d GIT binary patch literal 47172 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 literal 0 HcmV?d00001 diff --git a/addons_extensions/documents/demo/files/invoice_openvalue.pdf b/addons_extensions/documents/demo/files/invoice_openvalue.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ba8c379eced39d0f5c339c8b0a7805c0731a2f3a GIT binary patch literal 32525 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 literal 0 HcmV?d00001 diff --git a/addons_extensions/documents/demo/files/la.jpg b/addons_extensions/documents/demo/files/la.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38bba3bb25497072ecc7d784e2361aac8d801745 GIT binary patch literal 234135 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 z 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

    MSk|#{rR!`2Aa;C zHt5F52E@N~@|;i$rnEs}?iJf=MFJ#IwnFpk&?6=6a(QPUJiv0*=$-|p1O0VpJ&**( z`T5cv4BfI>kamwoeVGXy{BHc&h->*X(7|fP1}Vj{(P;T$b<9J^IgNt!&_4753YROV zQQSe3K9zq3uo~L?EU%`u825dg;MV7gk7F?Zos_vk%{Ms9ix2HYy_|GCYa_pO?-l9z zt(PfXuveO7yP|T6q<6pj9jt42Y2Dz8kmEWhoTMhNu*dWk(fVD(_M_i3_K*Vhb(c)f zv%zKsYWwm;_TiG1|K%La*1l8lob$(AYyY||$876_pGjF6f8CyVV~kKg#nEfFX-ph0 z5&7R+S#L=%)X4E0*4Pr*KJG-N4V@{H3!6)B6<)rSR7#4OE8 zF`MybPN;LI8BQW4WftUdTE^S!V9KR6!Vai1*5nJ_a+%FVJ~fBM$~*qA{Y(y))kqk} z!S;{zOPj+X8Dk%T=h^cvXEAERn|_z&4j$?d!P3(bMCXG!wJ}Y`i)5p%-+A(90VD>s zj|4@qS8g$!*DJV@AWauwdBCNye1F_lImK6a4injsw|nD*?nizgUb|ePm4P5;;H78Q zYw%_jM$Iq$F%j9qy%idx_BN(@zcN>=lCCPLmgSjAob#^ogah)NCQ05uuStV$tyt>| zkqg{(ss+q>q=kJJ?=iGkx!$_AFZiwEqC>ilrC}dZ5`)m2Xo0{epkX>z-DdgI@_3WB z$@Myo#ido>QTP2z=F2QouZvYhQr>{WS2D3HqC!J_h4swa@);GsElslAYRGLEozCSI zBN$40d0<|&T|yD_dNFvh9aWMUxR?R2W@Mk$SZxz-XI$8*d&MheAK@|2(ADNuuw57` z=3lCi#8_BaI4Q?>1{ZruB=E*lH4N1sS~uxdZP8XuM#BZDC0KKrQX9GD}7Is*!(0bc~0=&@F&rGO3}%I8*C z%&nlJurKZAFqJMWbV1~0;GRj^vA%BO$}hqA`1Z-f*TP?6ON~R}KIphz_<}d8jxDPz z%kuROPxe8@uX}#+3HGRhfdarU9MtDqfSM!lhTNH&mn9jx~ zx2{G?toCb#S&8_a{6mTL)130p8cFmFdLA3mkUZ`uGrGp;VQD4SHxs$mBNZe*35$vQ z85YSUdi7}h$ViyPRY_vbKfS;}$Cso$K%1t|K*y$7i|1C!n|@rqqrGc;jl2X@L~QQZ z3ao`5b8*$ZlUx9SBZFRQDDBI|)QgweE@RtUyEGgt&(%!jEJBAa%w2Xc!e1+{MHTE} z&Z%n;E<;1LxgMQN=OysprmL_AXCSon&d*<*4|H)~?uo*t`D|Mo%du@{H@mJ7X}?)^ zEqAWAwI-}6m0QR84RZ#9(kB|46jD8P4j7JcDJ=8RCe}_EuJR6xeaa`xJD=;gO?JyA z92pOGWLgYyN%_Ab(I4vNeqQ7HC5e-D(~9^GHn2sV{Atfe%E2R$G#Ns&T&-k_uX|o< zaxvWJgWnE%e@EGFD}w6iG7KyekTyNacX3leD>~WoteHb7eJySu?#V53?aBKkjEk5P zVS19QSNfx9nuFj~rKW7DLUx}2ut5d|! z#(~l{N&EuniB&eTHK#`WiL^PcBtvqVkQ(Fe*OC{)cg|M?sRlbGZ!+>x5%+opKVWf4f zsD;iK)Q>4PrD8BnWLPMJgHpvj-0g;EiJ`7fO(RqJpNkJGBFxTNa66+*n^%xVpT&f! zsY3U;q3zf*7x|H)hd3d$BjPPy|fn?+SQk9Trs8U?K?0V4q^?9 zePsooy6wvf*4N61Ut^0z_5KsDJiXYa;--GC zPSi|&ZM{hRF|fP1?D#{w&1t0*MKshOtX$lmi7RZlkA2XtaWzLxg|0bdcB%afPVa6w zV1M-rjN#YwrkG`FNS(#OOtm$)bo<(~PRDxRH(ILCq4eoB)Pn!i9M}`oSb5GYd6oT| z%0Wt#nK>Q1Lx4|{<~b=vQG$)}g2{~Yt6F{17)$KW`1MA?A>9s65o;RPaotw?GJ^db z2R{}b%;yZNYueYHQFg>j6orIkKe(&$r;>=PP}Tzz@1Op31ph$Uavx!Y&2m%q6*i(9 zdz*+oR0%N|2z?n;0(iEr_s;PhNgRE4zYTf9oVBIw0~3DgXfWTgS+Y6PvUlW?KG{Kc zGfvm=xHJWWO*gY&t$DZci0KXGLZ@8Lc3k&!Eq@Yx)erB^=H`ob{79{%ihY*u7ouRo z8zc(hSko3c#tBx$Yig&lZ7&?4*eFRgOkt2(-~JybnsM<=Nr(_#@m%A9OLzjS(-=>k z7x}Z14|UCjrCbv*KNiuQ(S533Y?^T@OyuP$Z|MqRH!CnN38XcC2!fAsWMB=lk_)n@($VTh)_Cx+q5|g1P;;)PBbamQeQ~ z*XaA~4|^avgXnE8K0Z?Z+G)>%$p!0YOw)F2F6sG#!Vs=^@o{J!Zhr%Q=R&UG(6Es^g3afE~CA3L3*B;t9tvJ49{W4xutGCiT6=1 z+R>Y34)quJY{DHp7|>Yfc5hs+2rIE1Jke!c0>U-%l* zw!IZLEis(XcH4{*mCUIb;GrJSt4AqjaOp9 z6|z=6|HCePG>TG?w(7^rfG3OBqu)9P(#ps@k*=^b zc?TB1Jw>aVZPQh$iD+kdA~MP`OJaDV?Zu;Syv%Rc(+GtBrd|;O=?RYn<~X=bHgOp; zCg(}brVkvepG~_`HiwWIWRxmbsyElftJs)fSkhN1+s8f+!8s%ztUShCFPEQwUuG7+~|2em}AyE&x69yAms*8 z3;`}f*dCVi=pbp3*5nlESx=t#+64mvAv|3Wo+)%uS-GBiRed+aQUoD2HP$nCSqW>-te$Sqt>saHcB4!>nX z@-9u%m&>zfW7@F?RgN%&7S1z09YXt^Hl)Lt>}^|$?v z)>2nGMa>wjZ39@|obWsX`h}5S6->9x>N706D!;iGG zm*OBt?vhDPHcuCY81uUTKHt>ViJ~x5mCCEnkkt z{Bcj3Ji#PCBF{Y#rAcdSf$vKksDs-akmIpx`&4v7u+3STT}!;8m6Rh{Nr8%5k8k{x zcl*T4-!_Qi6eC3zm#8@tr<}7W^4PLMW0>_13f1XWb`}Jo^3qK`NYhUY-S%7TO)F^1 zeTY#n#+PcIuk553U1RoHz?MsQy(m9Vkc2fSrtvH;rY3iH zshT=3HoT8ZdF|F{b0p|3*ktTuLA3(4{Kwj)tGnL<^tTWiTjEH%Q4l{n)7TvLAC&ge zi^zdG{R@!6q>K0l%Nd1}#5CkFt`Jdo@T|&N(v3uzy310k?lZAr!DOZuPZkiB;j;9>s0N{f3~Z z3YS6y`Sf4=DkJM@NrL0So*X?9YO^S=q7Sx=RUgOwPOQcQ9VyQjVWiZ4Kts`2-}Ye2 zRj=Ft(GinPY=gYN@F%W6TCjf3&8gm8m=TXel|dTVHH7V3$0;$D5pP-+Z|2yKTIDE5 zlMg9T{>mox4b7{wYtb60vkT*?euj)$EqK-MmPIv(2@?$Y7;WIVliMO&Yo}kQLZS!dqEnj6~Sx_f0vOyV6d~7>`{&Hl$CWTl-zjd}WD~fo= zq98CcaPrmO2tS=q#0SDH%hI5uO<|+Z8(ucLD6u`A(sw-Er{Pl_%`4iPB@b6y>L()| zG7OU#ul#fIJh`bHmW+KHH??#>j=DHC)I4y_H z_e{;CuJ+p`E4`Ftz5S^gepFD?Ikwzmp2ecq-Q;W?hD)6yGYwE)59{isCl5npU!aYR z-^9Po6aqtzDc~-tg#u}Qd<%-zFQEvohpJJUk;L#FRJdr=q(HiyhdZ9dyhm82?h(Rm! zga_md+WdHBd4RXggv^@MRWhvF@nXQBc0p$&VXKY_qO&+rS5F(UZ12j8{2~?{ zBpm)KXFG{53+v;gdiG9YXws&2)3y@9?Id-4{HCzQQ=4)n6zn{RbFZH5(A!#Lo8<7u z_$)E=*e!CTAj6o!jH~nzDnF8nUL05)%gg(9w0X@nA4H`d30TeY+=#~WcY9E$TpdX{ zGP1JWaSVF>PAYOBN_~BuuDwq?v&D1<0|YDDVe++^x3H$TjKD^%19${q54JixKZo!0 zUBl+{`%CW4k6QeI!Kr7mAhnykPJM;Z5(kUR*|AEL@ih2;m-f2XCJ9|FymN6vIHzlC zev*!T@g;@u)=8p$vBEU7{lIxKf;4kQUaQr{AQKqE#J@P4d@x)S{)xHsGB}Ai)Rbt@5k(Qw42>VK`vH&BDoO(x`WR8L<(t;5^VPJtihk{P@mk9PJ z>WD@+p3~mjw-lfLpr`>3p0#7p;#w*)lim~YasD#OY4#YiADYf^LP#iqre@k8Kia@xi66aX@7HA?yY(=HR;CBKNq1bZ8&$ zqy@|bB3>caz#Btkz?eFuMw$hDOZM4#iF9|liQhh!I!GdwmKvT;pD*+*aw;N;B$JyZ zE*unM5;}BTQm-t3rTu|1w7Q|qRNB%dbtWt-$1=A5NRw(CeJd^P_Zu^Qz5`bc>_PBC zx3t10V-W^hWfrfpL86~AHMVj^t2bK}v}*PXM8bK%I9Hllm)>b#aU4iM8BnfqR-BQR z=)Ruix-WSF>`injw3*2TVU|Oui8r2*fQvWq#EF&s1DECyyRmUKN1IfV3nO?t&6uDC zAT84aa)T{!j zU_P`1HZ2;!%!xFVbuYQKy?UwQc3foPc0d8k_CnX2Y{+&-C}O3ZcFoOb?!f!vH4flaHgy|50f2{5we=N7f9&A8Lq=&@)%7PxON zM6mpNy@GjKwXfPb&jHR&Z^P|XdH1-5dte7CVL1_tls}#_RMX0#*xo&cqczu3f%XK? zR4u+mJ{%(+KhfP%u`%tOPAKAzWZFouzWp=?`8Lk~2L(Ge)Y299UE6NCP$ZNI&YO5x z}Mv>pB_6fyn~Sd#R_ ztGJe?LIrM7G+Z(4IR|rTY$tAr=4W;c66b3=)!_w1$A`BobyrV?NGDV+W@D3dG8jxw zaq%3nGx{CyXmEV_bS%!hW~)-Ymfv@cz6^IRaY6)&_9;iw%e^kolh&{oB6OAT#we+% zEfP7%_i`g@{^#j*w0TZ7B2aPLC9GQXTJY-mI4$qA)IKX2ODgCy zj1QBv2wDT22q!Ow$e9CZ6%pQq4R16o7LP#j7N~s>KW1!*mbdzu9E*L(}REH=lPYn<% z(CljqG#62it4K-u6=p~Bb4=k?Cj$ArR$)3zFjoh(Pv)7qLlRwj&gycu$Gqh&{WGGF za#zOb90mb=NkdsC?hR@2K1JT36eb3D+IIm!t~{^1RMQs!>AGUmLxeyaeSJ`|x5DFz zsa~63IgqXAG5)J=InN-$3lZJ?8|q$gMpGl5L7q9qx%t3`3)wK)%6nUhdw+52i+BGj zvn;ALza|dqoKEOQyL3>JlrH%j=V~&-VM}$E-{}HSfeQ?MkomtfbF; zAz>dCNJoyG9}lJ06VA!M=p0m|(39wIoz`Lv6)aym(e2o;(`Lfxe89l0nsL#PB$$l2 zJ1*Hk*ogG$lM8>#jh*z7wY!~kVO;ysqFfhLQthaB^hGR#1GmtKCJ$Nb4ms?#P$Dz_X zdwk4D4*q6LS;75^LNHz}#mc{y`LS9AiNqM+hRgQ^dYA7b$(o0H@6+ci*UJ)%^|xjq zY4h;|PngJOBk2p@u8*m7^I~z$e9>d&AyFQW;fJ}QI_IeOQf^M&bc+VPO0${i|BE4$+&cx%OokBwCSwV454In}kcx5M)UCv3QP;5~};BXg7KdL0-u zUh-k#@zbt%_*zZQjE#+{3_l12gH8r{maegI+nQLk6Ema2Onb|o17Z7GmD8qql}9s{ zH^`p#4Fj_Y)-3eADJtq7*&2jFoUG_97qX#=Obxskw;2W+_(e{?vlxfBwu`fwKbIJ5 z_$HS>DUwv0RMw?zc%3i@cKntJN9bUN64g=Hbd@i|ZnQ48Zhy6sTJ6_+y&jWQHY+U% zvD1n0YVv3koGWo#|3qh@3=_PJ@brO;Z(_B*k3R083$yCBTi8=v{q@!BRh@d%%wvVv z;kgQsnpr;J1mOygoze4Vq$+axGVb^`4JT-$$sk2|+5+a0*MyIMwtJ*Xbyw%|`@Bq1 z(9&-S`k)pz$(}B@`$HO&SAgBTzHm0kwE?|xB9c;y(yIQ7iikG66`hDeMeVD(cBag1 zgM>d1#8@IT&cfP(RxXC5`unbl?UrSvqGF1E-+SD7#rRfR)z-z@j5B=?h+2iqNe)6{ z@EXXlv^i2gnk6oBjob5D$>(7>IAWf;=1|$5i%JvWtVmiYGG?eTrRIvO|JzN5;xd@q zFVBcs&N?76&)GVMpJ2NL-l{jf3bjPmZ?Un0wOXvjAHqiYSg!E*x2|(@Hqk23({wh! zOP5&}W3Fa~*yZjH*M*XeY><~wS=-T3){U4+?=xt%24IFa?RX(l}R@YdTG*UHwrfHMCbx$O^Cs8Ng6}ND{Pn-FEwUA&+ zHK$HJVprq@b0lUmjJIsIPK?*Vg~A1-t}U|KmHZ(Y89e>idbEG8+cbmftxS{OOIXNH zer&Ju#3Jp6)p}NnzDqjDL|gyYo?2{h!APuF31{c(onDdiykyz_>RpZR=Y7>Pq!#CM zAV!F7F^mDSI!e{dDg^olBtlQu`u?p;o0pS61ouH%p>rd$Eku`eY{JTrA+u^aV-Cn+ zEbykJ6wBSa=pEuECDSGJ#2Yo{0P3B5qD1y(=%x6qJ2QBxkI1>S4z#OH@^Y3rlBp!x zHCEC2(8wavBh_2voi`WR5BB+s2Me?VdrFUmz_A$7lTYT?-@-l!9(Gm;B06AyP{!IG zOeRA<9Zq5BrT_s`t~AWsI;)+WYmYTKKI1oPy-HVHkm}b@NR|ciCnS`DQpB$WZUvb9 z7p)19Ch7jHFE3IOxl-1C)5ueRuzwA1M(lt#30++ou8Q;+A-kGFNs)BZuP?PozW3Vp zNi0l1we6NaP?QCCzlHB(T{i+>F5BU>q!dse4|>(si!v1hPdDq2tlZ=YsUt%p;FXeF zQmqlMEO0q4jpgiRk`$%phMj&&nP`v;swlKH=vu7gcR4t`P$5i`>(N`7Vy2W5S^-ET z;t~HK!v5JwtN#~$-!3;;2X^l#eHm51)dP+IeIUFur|49dT>s1>IkIK771$+0?HrbZ znxys`lBu%)RFA3+nqbLCfv%o9Dco63LLbz*s2gHAVKDp9D#hhPp&HH4CT4i-9SuEW zWtHgLbZlQcZ=0plt%;; zwpLWRZY3e;L$Pt^G=wpnr#hLPRYkRY3!cQ}g6+vRtNz*(h9Svmrmt%BPNeU?AY;_r zQa+;;xd_@;mlI7N-_;xLJg|B4nDe~SJrnAHP7n|}e*xd^!>jor7|7VJfNd#4XQswMzHWse`p_(a2y8c@nM^`ba-wIPM2kr!t<@sP6}{LAT4u1SrVpUx}?gz@ErlY z7zbB-50tAVI08GZI5y0z9^(gP#K23NI6@Ex^He5%LK|ZcQCZ_zjf-ajLRr%*sH<2y z3;JxP?p{f|HMCi06uH$2 zHIcCBGsOCYgz~r!&#Asm4LwrfNlrXZW}qtfB~JV$3wn;smJWSAJWEIt5cwUVu!N9@ zfaT3t`kStmZ%Ice>hh`te$4;@23`+dWb8J%DyIV5kTxMMB?!LtU~su|)J9Jge~g*; zsgp6743>vj2=_* zm=o~IoV6hH%n>H;E67?rBNGUIKXfZ6?5&_emmJ|1l?{dAYZdc- zlGOVqCd^~hC$=WF0x4G=f_coX=3a=2idUn2B^vq(7XxMh{2H5J>>@GMMqbY8Jbu?L zS0JZg;kFjRjF;$$PO`nTgN1ePB?d$L%8-uITrqdO-ig@5$<@GlwP!aZs*HP2Wc0KK zeYyh9?s&x<1oPAfk!Yg(bB5;3JCm8A`4L zVaK*I*TdhcjOyK!xSfTBFJzRk;_Ud7#}9XPTev{4E4&Ic67~AIj~~R8&jNE!;+d{d~Sf1XFx6Z^0)9uWRp<1<}X>`z}^fE_k=s{%3yNkrnmuH<>GTIZIImB`r| z(Cet=7k&7s1A7V@eQHT6!BZg;bEIRb%3iLIo{Kj@Ug(WRU|ilRh9 zKoy?V{_ji*MS;gp!U^MLedd~X?s-8($6zZm2Bn3dpITfu^p0!Tm1rh3V(pXsvY@6c z-m%!nRji?bpOm{xrjH!}hd_MX_q-Z(MW#l(%w3t80T>3&;%Zlm=`g(7Sw7~U=wy{iX_wdvRnhD}r1Bb6*iChC+N zHk}ZHW&VLznz!8~qRy-5K4{yY4X(616VN2BdDQVMzMnS=k->YWyn= zfmHE};dLT<7E8KXU$$*QB_OqV@vjp9d?Bn%BU#^_$T~Wr$8wJ+j80#6MYho|RTy~Y+f8!NP#0=)J4Sum!@x&nZyrI!t zk>V12DX+OPb?{~s*VdD$=#(hac~>??_JPkFu8KXTOlVXU_ehS5I%iWk_K?g4$I>9T zlk^lF5`}r{`b*Im`Lk~SEUE_n1?;qfdaloEK-LuAm?nq%Ox4z9b%F0R%zZ;W>k)gP zV#fIObPfJBU@fW_*z`^vI3_`3Weu0D2Su4bLWt1Chy?reH&77_D92*sgPsSa4=pEs z{eEnF@XEv-=d($A>$^d?08Qxwr8|(&akaj#OeDTJ1AXRYGG^~Pm}{0?v+Rd)mI_kW zSr}5#{+pPl{s~9zc$sb?<6Ki2sY62hcFB6?-GF1j$m7VkNxJPu=;-T~5E2805!)sw zC6fol2q5LQ`El;}DF`hpTfJtz6(qYHE2a&T#`gQ>5tv$7j0K+;g!LG!A9O#gzw01o znYPUY>H3Elux=N($%e_$1Yri1*aipYKE{l;iyspV(=~lHBSq!uV)m@J%VK2BNIJk; z6pPWkigMi+sN~p1v8t3PT+&gZbhkk0ijs|v31=nb2ph_RB`2DbpZXG ziaY`?G*+o=_>^1dc|4e4`ptI%VZKD2u2xz+7IKty{-#h~T^cu^5BdReL@a=NNLbzU z!l_bTw@fW#$7zU6%IBr!U_+v9ZqZlS6WdG_HlzNr+08}!>=LP7zTh=FSB3dF7lGKd zB>pm#iV;#|Vc=Z9;v0)Jgsq81(W!U={2TD<RD55=h~X7uCUIlS;bcC~mVMy9X&Lb&S1(csp~NKAO&nd-Q)F~T z$9Wi!HjpQhGn%#Qs>#&tw zGPe0%Pf%`aoSOO

    ^F_ikwAV_32QV?{5ZN^JI&$GG^8B8ih@=b{o1H(MwHhY9!c( z6utg~qNAyI`hc5pdb=9dzenO(yPTQCw+8u4)mWqzE+g4V`>}8d64YIXSZBa%i@1Eh=;q{!5z)1*E4cS6q5f00H5=X}8d9w+MJxPQf;*j$+CGZh^ zAiP@5UJ4k^KJ&Op9M(J|)9>W=5zF$7Oy`_mGyWCgU5xQIv;UPxnMP#)a>t+VC@ci1 zC}?P?=;#m7&{2T{1qBs_@Fj=1nu#+(VEl{Rs!qfq`_hq^>U*a@(|`7c>*zG9W4-~>yp6%{aDB$% z&^G4n5&)NGi5l(y8Zc@925Z8hK&!u015Dk+ygwzK{iS0Ipc=RVa%tVy0o>dGPS)Us z1wJB4Oxl;sHzapJ@dO|l#6R-*D;}WgmN5t*>=wiX@GJsghTkTgjsx5>Z^D7l89n!; zot;e<_<{b);8gn(p!yF=#6PJ2r2r^8)V_piUzTpc?_&HwJAfd^0YHCHf`CkfN3eUs z{x<)&KEOf%1YkP}pb5b7mkZ`C04V?nsQGVoKxKbW0{v6|pmf6zCjoxJ_ecSaK??#d z`+;iZempyX0M719?-hQ}%q6RF`ISKjtRUb7Q20GCBtQ(nTf+a00U*No^7+jf0DT$x zS7HDC^_R+fIKVvA-H!wyo#H1#N2?aKJ~zA?ZQOcQ=f0yJ+ZH);T=9!O!k@nkh< z3IO&x0EBM=n6BVk@3NHwVgVuEl>9-V*#Sf{+73(F0ki@T&-0hvi9aZjYXd2#k5kxo zzW=2Kp!=T4e{KIY9CizUby>Sw7&EFnyT2MpVFd{Ie$V?Kl&@DDer%&_w;+I>L%@oG zpa#WP+M_+&9k9Eo(*ia3Ov!plX%ka2lT+IQ(G_h4_?Cf2TI?}46n z=%=u4Hw8!o^8bTk2AI(3KYCY-1f(RV4waAit6zY0>4B83`xZcR$I<(<|NZ^d!X;o@ z6F_(Q+ce^d_6V?J)K2@}>i-e*9~4@krGE7ti}ab|0)eIjywNbR^w9h=6{&@tJlA@ zr`7+0yDR;Jg0*lOz_=lFt0J1?t-`;7x5--R_r7`HRy98#Q&+jB zX-g2xD8EQuyX@rjH!zhSeu3&A^*>tvC$#?y^F1~HRbct=;+}Yb-$vR2@iy6#mhQiN z`!}2}ApBEKkN(%=LPEHp%8OtUX-D?}rNC&>=UKZ!*@yHqG7|p2Q z($39B%E(Po#__4Q&%+ZusQl@$hxa!u_|vQarQhGAyHq>9zg|I4WnS4UKiv{RJmRk5 zVRR(hHZJ-9xcsZiKPb^CfBQ5r91x%YBjF#Eg9%fgSh_dfBzM*yynTf3!qzrVvQ*(0 z*1$+2_6NnkLI{WmDA=!GcKiqBMOjE>8}3lT zwQ|JbMA_PL$mSpC=gWKgd*Et2s$=u)<`2s6=YLRQ)8+AV`UYIqzLAIJ;)?*F-t&%n zU*XHe@z3|WhvidO;uZLjlsBOFZQ*RmUnT{H`H&$?I|x}xpV{v*cD>m_OSG)v8cp6g zVXg1V6QP|Y^rlrsJbC(=MEN~yh8ALgb5r7qz5Ok)S&7jCBp9nych0MJvm|NpwkeaGKp zHO?vHN-<}xdK{MXb1Fb-t)M-QIm`;7;LhSeY=v-#oKlmp@rM{$fd~3MIMep57nq%@)5PMSo@vCcm0h;2$gk!cbX$|<+TnH2SbB%_Jh49wLb4Mjh`)u zlYd!#36e<3eW3_JZ+*0FaJ~M%H7Cyq9P{N7*SijyZxoIs<#i1VZ)`YS=;gl6xPbZP z={!ZJ`a6QqbI(&ZFH=^QKLkL4r)hxFtu^N4RILOh3|_xyr)#p7v~- z-BF%3Hby07($(_oc=VWay)8)#l3UAs&4G1s2%i46(2Hw;5Way6qB$ zTZN;>9VLI7k6j!+)F(U&UXL!iT63ujPFO;RIrj{6t}lZjO})mcYH#-Y*=gGi&LboH z`MX>$%o9uf=RZoTVzTS_SgvDOOyEo8b-^ETEHV4PWSfyy^Xd1@xR_xPZ%S!b_6lM~ zXO^{AGrObTg5R{NG)y}GK|v*H&yIZ0cgA$UHg3j$KOT3-72NW&A&>RQ@KG)I$m6MX zU%I5X%AytBzXMPK52IsXxNA6d#y$^r#~e`4oF84~z*ltV3C4cvO3w?`owh|499WAm z#F}Dpc7iT${!A-L!RYa#GvUvkRqR9(yD~q0ueJ9ug{iW{ex!d7?F64|eh^lUf(9%g zePVX31uxH8?Al4$V>dY4idT?~JALvin5Z%MB!gb1LALvvR@Hfs!SU$n8)^2mx_Ru3 z;3uC>vW{b*rwU3dw#>ybMVuo`Tz&lVPc9Qj*zM)?%lf+@1M9CdRICrmw50XP;dhr8 zKcRK>H4m3$KZQDTwVx~E_#Ql|R5IjnX30BXb@p4M)AdietuJOr+ilEg$gu(RdGRLy{ccc$698%nf zAMuf6~kmEvWP zxg>4*(MSx%^CxFg!*_!?Uky^xX+I3sL%6@FT&M6P`pPFmFDXA(yx7&&!tVPoN&&dg0vY|@)-?(fO+TjkSV)i zOjh#bC=z!v^t{a(2@%zesmE^mJmTY_ZVM4|-+=kZ&CiZ*RUIR}hym=}c3P8~0zuiI z-~tgy?EdL>ml)i5|4Igg+$$#26=Yh%<3~*ie5b%gFNdfwrx9!wr;9O{)z^g zGBw;T48O(cxO<`BRD`oo;8)-yzS(phTyVtiXt>nU6yc;kyDQ$kKmc(}ptA4`1hZb} z=l$p|+ROC1Ozmkml_8vFamg^C(jgBEcf+F{)-`clS7oMFELEOis0f^PZWNeZ4CW7+ zXjrGl@+&NAHZ^=Q$Cw`CJAnN`{%N~A*WNmA4c);f7U)Fz;~?Y=hgrY_kqw=sS$U!O zmSuv5=D;m73fQ6~zHg_ZX8UtCt};JBjnc#AI!q)WHcUOw(*a)^-i z{@_#k?u;^~1)Y-zXOKu=k!i!22kDif5J$KW{j`qB%|$#%m7U7*Vdx7yMX#8OqQPOe z%+yyfial&6M_?4O_=Ca-=~G{fyMNuCNHgqeVSS|!YrC36sOK?h`iD)lM^?XSllu5z z`j_R5ELHe~uyJuFU7iSAYwd~G$--C<*}T8pa30+4nrqN|2qPpVrCJClcK5r{UN{fV z`%`0CM0D{jFFwkh6fxA(I{>eco-FW2Y3ni%{sou~HI2M$_l@deNjC zC+XVs=;cJ=2T{%;-F0xyG8-8 zrWFn!`@b(xBq(rb?mXQckzS@~Kt}h!DzOLV(eFMx7^Orck@>NQ)KA(3XM5|F8uBG~ z8kzrW6QEH6?KiXIzp922_WuwrG)J$+L`1n{Q1Nq$gOB-WW*d^GAGr*6D6T)YoEI&T zt^1u(ZcwWF(KCX_XHm#Kc}UVq?P(5^%cj`GY&3)V+^9apStSAOF+&CsE&YM;0<=vo zF4PoeFRr{Uj%(x%Oe@u_?Hf01E;A*~!X z&(a*FuRD+RjBA~Vy69rd5ixnT6@}$dF0VCwGsHg*`(YrSeD>B?nRY`Yb4A=Bok*jG zNd!>&hYs9r67F|TAZQ`MB8L@B0ce7LBwGPDEFL27aMc!^!sEWMzZo8^>6NTH z+O!U85iW}EPw%l&4qnGQIZuS7&C!;oiR;jYE?UTb$2mP=8f2?tYIhTt@Ol8XSYO&? zAC_#v-f>C7!Sqtm{$6BO+pIR3nz+B>i1Jkvp7YT>M*lex+SQ0yMLFAu#ML0L=3&^| zBxnN;Hs#j$hbSTrd?B+y8q-Qv8^+kNPi**S-1*ceKZr|HP%e`!N!qKCAsJjkr=MsE zj$8tdO)DsigxB&K>+HT`r+U+yYvXf{q8snoIb&KRvhJjT*TS-UqVQQ#Vs<~0i9_;Qe1P`+56Y4f%R5zi* zZHz3+aeOkudeVoLKX)a0F{j8c5}j&{XV{-i_3h_NDOgkhW&MSGH8lF}=@qEyIyl9UnX{&CACsdo4>xG>F*oYEC#ESGe$1~ED zEko05g(lsIo+3_QA_?S58Ht;_VkTZ&=wN3(4@VhXFa>p#0+R9T$qVh##L+AIjC zb=0mgu?x>B$nY~Zl26g1OO090QwmSTx-LU^myNw5L)xZ;m5m1(FxzlRaGmT@J%e$~ zDqgT@3yO@Pt=K2Ta_q2-uIqi|x9}+Dna5^;5+nRS&3% z&c|dXt$m-~;J0MOVt`ZmCe5B$pyp+3HzJ$!dqXNTqyjO$FJz!qU0EIDQC2#riHW0M zlBm}ck)}1l@kYLCJh`o~))e*a$wO$EHHTMyrX`8e28PlW_qVS+m)NPW%=lD#jrM|( z7A3T+cxFtGeHVD(pbndDoRbG^-2|SL9Pw;IM|0U26z94u6p&>uNN9hmG~xWhP)QK{D?OeAI2A))D~XL zwEaG=88%zO`cg6DfIyafNrN}`(Uy|Y#_LdyrU;=Ls>Sw!RJRXc8+q!x&kWLw9@b}& zUpGGZ?9mi`51UeR;w(5njxG$!eIzY5vNY3rKj+Ll4|bf4QTP_19TE2BGL!z@8}I(; zhK3t16e+r5vnluy&zak?Qcr7Vi}kDDuh`4D4ZjS!ZjP_>j*3b$708FM9?WfMQ>sb2?ya|3t8S!m@zT;12^8nUn#v9AovN%IWD7d?qeejod_kf zvhBg;6Aaqppb}wwnv=|-ZPit!#rX5A<@Oha0Z(0QryUT&zozPmgxeaE;!`BdB-$3& zs|IDwR%h!oH3HH0!aT?pcuSPVuN4}rRe4O7ujREES7|S0!;37RRr`HbFM;bO<)km3 ze1GKbljOgSrr)FOt(Z1k+hwnt^1hwgR1}5fQLWZvU1`hWwm}PWaCE1#cQTRdQ=e(I zJ%M6M_*M+K%pGhT9!la7Bl&z#6Lky39S^57tJ#MhVi@5B6hnJ_lZ)3zd4IV7J`c9v z&w8Ts+KCYE{oS%ED)w{MFLv$n5p^|mdcmJeUTv~?L`j446FB{wv4l&dSq{@yEnMsG zm17?Yq*iane1D+D1#%UNVGeIn`*ki=7rhM=Tro&Uw;pij-1%U)Bhd2Q?1jjl0U1;0 z6FGDk7-mdV=$hIu{w4?eBlZkALgWt$;rA1KkJz{}aQPjbdfkZI5w)jS<1@i9<3e&n zo<~`{W>15bshifx4!e9mEu=Zqy;J!=0C+%$zkX4>3ig}G%IPvd&_2)<(Og``mO{JK z8^W74xsSOnT>HoJn1Q*~8ve&~Ut0%H%^mJLQBhiPz99J}M5sab%}jKgk4r18!&8|} z%;x8rQ8=E`o8-Vqei^bWxbLUxS`HK{x` zGA((xsf-mJ2n)_-oUfaWY0s@q8Pk*ZmcVB~g|`0jail9ja2(3|5|X|YTG|uL1}~Nb zw{wjPfW>!BF*8w5avgV27PMNIn_UsW+lfOmLsp(AC_8e3*p#h?K!Yw-4U&C8W$u$p zLeKXpxvLBnpMr4%=Ao;E#wnIQVidnOQu!jes!KDC5HO;X7VU#b-1pFyW%50e}rZc zF@5DyalMyVjndk$I*Q;Kyj7I+_Yq-v$nynNj*=&Cd;)-&enwTIZ};PT#z?iCqbr zUjz=Qj=WOvsH^(5>1qs!v^`B4GrsVbu(aT2o`GV&F!8<7 zLg5PFLfE;Q-Ogj$Z`Ubf#--s%5Y}I&0ot$T1ym-=(S}(2Pf{M3H}<*0>p2tRWTE*Y za7~hocEPTXroBGX?-EqjXSBzo8NTqZ7^9ws$#rjL|Jt$RHQ$35f5 z!?L2Z_nXhagauf0sDP|O`Cp{ag~&=<9)evq5|zFoq8g!VtQAl@ku_1=f%5(3RNb>7 z+7oJ--9-gvy?bjdStD&>z@KS;OufREFn5B**J3kJ*XCDxA)%kRpxw)8u9a_IB}>S0 zFT&i0*-T1wOBztsN(=>-pQ%JM08`uCXfX`GM+Ee z#Z3PITUF@9$nB*a;k8R8O)qZs~WXOHlfTQ`Z$C6pRJ7cUcNG|H%Ty?B}%Y{!xV z3d*}(EKEHxm$cZDVL#I{u$PTQ-#9CV5)!-NBAA8Vsvri$RnvR9RJ0^?Rb3T<#dn@diBADjCfwTAM=0)E^U7 z7Ucs|FDXfODB7+dHYFM9fIJz1&;h74|S1-}#=eCl- z&$x>4&7LDzU;3hk(UxYM%*;nN)z^q-{lRk?Yg*=W=;l5yQ8j!(m#dfXB)=Pjl0N#C zP4oQBzOKH8^BK?6QoS+hQoqArNT*hTvf($9)nwxkG$AJF*C8%FwG+GYw zhBR|F0ek9Hegac~%M=vtC|VzBeuPBamU+m483zi5x8)0{{SdTc37!dSPi#WWrPo;e(6M-bvLB87r(osl1;+q$GiJ9X zXvh3VZ+<_6^O>!nb(Clllc$n8rQw%pqeQpSZbwdKQir%R2ReGneV_v7+A1^V;exdt ze5ZT-L)Jjp*R)hSOXK8>Y`Iv)w(qpw*at>oRWMa=v75I@%$@1{MezRsQDyCb$5p`r zbx}C3K^Ye4hytPqT8fP{*Pl$!lo!NYtWu{zle#s&!mh1SIRnw@Sc|QJ$ z=*)V1dQrKp%Jr#VTZuOotYQXD@-W+L=l=i!WtRoFDs%27aTQ6f_FQNV^3O}(jk_v_ z6}iR((ih6UAWY7&x~(ZsSgSz2$zHk8YUR8Ky~~SN9T7bq_X4;lyv;+{5Tn8FTvU9C zh6Hz(DKi6Vyf6izokl6C`mw;himHn=Rkow5(rD6ydZ4IdMLQXXs!w@U5OBGE)dyRf zOzP{-G3RZJKs6UJ>zEdm;s*s9>BQyYwULGYFV{VV02m?i0s0_$e zQPwwS?j40Wf-_se>m1g?4N6KX?x|9_f`r~aV<%jZfw-w)Te}ps-7f`hDoQFghUH^T z=Eq&x_9GKF_SLGl17Xj$NhcM8NyJEK4mSV)}nJ_+Onm=!+A)FWpSlyIaJV)MQxni%U4UHqZu^; zV@vMMi}%tsaH^q6)vL!4_ONh?rf4Bgy6hsA7y4{tqyGR<^ZdT>94{=PcTdC~D=#w; zt?0K^Ud05kHZ9*Zi>%l3~{vRUb0 zP3EU*^DpW+(#(%Ci3Y8;ndb`1n4p)XDS~h(rAn1FTpY5)(rKss7%Jsm%&ic?Adv}x>d?F&}zb=u0+TI zB|J)P!8Ypc3J(V13(#7%~fOxb3!^`%KMOADE6l;J_71R!f~t1_*Ny0X9dznTNg1LaTqeR8D+C zE+viHX>X*s)H&NsT-+OpPF^5yJs@RgK(jU0GJv&XQN`xTQwPk90xPr^l`gZqw~0?H zEAD}-dwfd$*NI17eE_wNAIlMq-C=AsG1Ma|%y7zg3`%UEtE~S3sLOhC1yjU3sX+(g zRa3;@e1=DYN*LQuUQEiLm2U;*;P$lchl$KJEivlccw@O-aP2Pg@OkYnY&VEvU(FmH9^>8@SU&K9RAzLQ@fB3v*f1Z2nC_>TAF=7K_3RU@zV$Qy>QL0LMNS|C zydduFJ8At(JRe3oW8Qoc;M>|X=keYrE^%_%TuEwYty@)9P6~6iOIRH7E$8Ek$w}mu zBN}u_9sv_&Qv$<8zVPHHk`|&K*E%igt8>0daHZO;ORTe_1vmGyf?UZ{CcHp{_U9x= zx~C-e+zbxkR|W`d#GrMXeZt`nWEWm~M>q5)GUguHtv8(Md=sPdltt06v>Guk)V5N( zo;NDyz_3DGMe_{mR*EiJSvzh6`!VM|?6diiAor(8qlw}y%d}DXK^i^d=Hym=#2)aC zMDZ}|K!w@!F6bxB=qr8*%cMSM-uNu7FNW329HTCA2xIHHcVfnaLk>8UW}YRPXQByV z`B715-R@$oB`QF5j=49vl#3B&SWdlQSMpQ?o$X@cC01T9h-JU7u^a`|d5fjTQ=$$P zl}`pGWshXcr_jvyn3OZCBJjAFTNhn;d_Ws`j^##+P4_bc4z0rMg=1=yu4Ws;jNBbC zy4GQBp{uPilak`?D*Hy0h81+jMRHfRQ*A9vy!C^ME9r8cwRSzF{{RQFiTFg@mu+7i zBEE))E?}jXcSD#fH-ajH^YJutVVDh@dAmv^R*qiq8QEG`LU(LWUa?fxxp>3Dv!4^? zrq^aT*fs!L7!UiEA3F7OVm9fWs_tVYkzd3waA*%Ks=yCmtKSYO1V z$Ml@oRL8hO06I&T>yK4q77?d6C~I9kZW6b-r;ufV2co|uE6(#g5Lzb z^wiVGT8VGH5+{Y-Y*}t9Y4079s|3Q!k8>C1CH7afKmh{im^97Bt{@!DnVI5Qw$;|5 zSroH5i{JKYJ+*I}OSGllU9W<7@k#4j6*;|amal&Ev(@Wgw9bbN$=uCN_nE7s-dg6} z#-Ox(J3wWj-eeB1q!dbq8r--FDCQay3)L_dRBw#1ySS`WS*pBplq}M4@h#S3nPoeu zU0vKahVsqJy`h#n2qr}9QHcCzhc@X7J9q|RY##n(py`k1;i)E0*(i1ZFwSdizgw(-3ccgPAb|Vo_ zw4tqev+d>$(d#Q;>RXzaCg!o1S$V_HtSnW0J7YA#JBSG8WuY?FixTl*HhI)#(}TQH zK;aOixaZpud2pGkA){AwZxC20!4BqenB>*`OC{w;uY%T)+A^}=fu)(% zWy~1Q`a@!{(B}-@y-$qDidr<8z5f{v&IbjoUM24Xe8vT1S0>bXA`-<|nwPa#Hc|P^z|=8nrbiv) zReWXReP%pl0C3Ss$p!ZRnE$y;ms++Z#8{XB2*mWt? z(*<<~{YLsSgq%6c8BH%C`)sQjoJkB+f#_dkeZKQ=pQawl%d6+7p#-~XXS@>Sp)Yi^ ztm*^HF#!ir^K!i%H)w_NF7ZOr_%@1BP3F{Lq}O401qOv<@XoPxZ9VD{OWxY}i?_~J zY83$n1ZH)zGk;e;QwVRU%$t0Y{IiW=WU&+|;G8B&yT|Hb;h)pqEThIR#%l8&`f8Uq z2_^`w?U-V2z}&?L`T}MSv7NMzC-hBDSIa2bEt=(;N>==sK7PY55of%iPu(?%X@hTf zS$xB@a^5l4+#RcLHZkUBViXr=hFEntO6c$ATu&$c+F*b}7RxhtwmQL=F#6{Wo1nST zS-MIY5h~W47uHyG6n2E`)vU_sfs-`P6M}+fkaEytTb0{~>9;zQhxN=}=DgZDiR=*N zJ|+BD@dhB9J!b7U@h=N3?=I1|EL%s+E;M&D@VU$muJdRe=sHK2NH9{@frC-9qkg5* z*@VU~s^R|tyL`ovRL+wS!got~D6L^FWsh;(0hk`V!B`H-b*a%WhZK^(Wj(!80+3(I=~)8E$zadX2=;a{@Hvgu&iHz zQ_=KRZmZVAFX8rv=f7hNfFnH=7= zAJMx9H+`kqcGl~xt&}Z#%DsXCJwshJFP*a! zkAe*<;HxO0e!Af@#`l9Hi=7O+iK>>bICnIRJ864Pd~@D%0Ca=gtC5-sc8GGuVBR>d zv#4ccTtC@{&}%$D+;ZLf#a*p(`rJVuGmlc`vd_d3;PrvlK86Ju>yO$TiSwCOKICS{ z?=OzV0nDsf)?QKUyr;1MT}I6=$ne8U#J-_TB$t_QiHC23cXIgefp-Fw?@d)lv^Lal zq}LTR-OWn8MBZ^QjbrsW@s*zmv*@g$#>2D|hmjYc9*e|Bu=E?w!}uE;{bf`nTb&pd zPxOagsNKIZ;pS(EV-4U+QSZMoa?53^B^w)tp?!oiC+GDYG(x$&aRfqouM=YDvcSFR z9D;P0{*Z0w>69$v?uod3CFJ-sCX=!7pW0$QUeVfNHrvZE?bNK4?CCH%XI#!IAXQA> zCCuA7wwIRoc!=i*LSn_{g`as-mZ}2II+wPDc3nzh?j1}QNP5j{a!h148+L+eeW!ML zm7sT+dt65esx|E?t9z-kLGuFjdggJ#_kaonS3V`+3m7HtMeK4dbjJ4e%Ycfj4Dms1 z@Jf}usKky_7rAD4Gl$3+_&i}s!&yL*4;5v=MHmYTF~wx)oIXl*WQwtShyM00f1 zD^J4{rI6x{a`8FxeqqO)#D$rg?wnvZ9Y9-R4!zQMI$UN`(i(wmW8p91@q+&Va{{y= zS|s(o;sa-kmaYZx#JoC$v`-P#W((k^Up0=sn(r_0KQmil@!C5kAIlM9;31yGs%^7I z;H}Ny@h}Xaz$w;sQ~d@WKkJE?jrc)fNW5qIfD~U9&sp;wIJyl6cLmRKLuMtKl+&@! zWh@sTJ&s^IU}DP{zv)hR%=4*`JKx$e>t*7r+4_ReUAc0(^Wx8x+Y@Z6!HmU9COXUE zlK79(5qbOZ6zJ3`Vbs?sK2fIoU%VsJvsKmPhq}9eY`k1DR$Gq|7La1Xbp#5*Fr>Ny zJ0&?Jy`>3tY=1DPZ9D!0aTy;3BWKwb;IvZbo-Fe%i=(8#O-0qlV?%!u(j$w45p?bm zx#&vUZte{*AEl|^D+34aWHz|uOJYT{*6=+bhf7Q3kKEzu#92k3qnY9EOTEkK67F69 z0JuE2-4D5(d`>RY3znfF$RrS+GYb)Y}H9hYmzHWD~Kyh zWMz7{0?u2aBSUdTDm^`Rona1`lm_Lomwqcuyx9{GTk3qqqrGb|t-IcHnfPEWtP+i3 z6nN!F7Vl_$lx|$nSbu+LXZl3;_<`T?FTDGvbE~b?LuZfPi_I4;Q}Y_AmYqMs7N|ZY zWwiH80loBfl-L!uF1;n)$`8u%2P*p3VO(2z%&>X<1AS%%@8m-KdkDuJU~i(eW9 zR`^bx=lwLlSIo2@MyFIQ%maZwU^yUECcyNA_EssmKx(;hLaplbGntnC&{xd67VaFc zvlOZRF$K>u)8-ma2*DY60v~53nXGk!O{KS5?J6n(bzZP7ioRSrmUJLJNI8S%H_e|M zN_@jr&M2z8p?)Z2)5j8xbl2ufXIC>7UEl9E{s~LeuR-(kJX!A+E*}y90B>l& z81nHl9`A^0?_uthwLg+8@1K;zVVj>2{{XwI9%mtrF)eA!ajr;T#Hw4-qvJ4WCdey( z_IyMe9FKA*^>9igZr~Gve3Km<=8k2=X~8(}Hn3=FGRmq8yiC_q(wxuC7~MHPCYapz z>}H`YN^Xvl*YEi8V*ctT-~0M%2h65R(2D$@LbN?``G3Ay*XDPFu_M%#84iIZQvDb3 z%2Ms_`K&-|@)Eti7`DJDtprw`(L(#mTFl3C{v{9fFhho2o&j^m6QXCGXOdj+M;S*( zSd?B*M2-CT8;roGgBQ)|d6cGI0^;U~Znv3>6WU^`b!`OG40l73^u%_|FWokRKp4(@ zY+4^=c1`jfVlC@M{cMZja{z<$r*}wwq-ifM&rKsqnwNT;h|WxQn4`>XmN-2G85DLR z`KPqDRnR5ixA*2-L2b5~d6iM2n!3cOvRw6s>bg6kF^D90Ir5+gGeBK1G`BV=edSlo zuHsz{YdVVM?(PCnM_GQYXFH9O%I5*A&)!@8xmU;C3x$4o!DB}A>`7K6HXb2(+f@O- zdc`b5fG&10%LpD9syk-hvnhFt-YYhbu#{vynI%bp@8~8022B?YwVdF%p)J#bVAKvd zhcj}OX)iHV0oG!T=QDK+xTg?5-$c~0=#?l{)Eb&QnspQtm5d=qT?R4TH$k;V=qWE~ z_-wZk3SG{T?0mvB4DIhLp$ekLQ$u1ge9iZ(&H0)X5|p!O8fxC2CLCpnTn=7{(#qqG zHj}D;6-v7S5TO%N&kMR?y7Aqd!!I~a;*I*%S{#=Isl-i}gA!F`ubI*H+desU6u02a zKbTWUt#Io()W$r_d|hU)()q`USQt5L1nQ(5CSC$>X&a~h&1T=fsHxIRcuL&t9dSEv z1ETK6Ad1S$IaNm@y=9u~3=4rTn6KFx@E&EbU1b$H#=H58vuOK~+g~r8qb!ZPVIkd7R6*Yf*z3ci9A4EljJKn+~yvtQ<{uOJp$`P{OR%;&Bkh zRC7xkI5$HT)>i=+jW-&qH+^Q^Ta`2EZPAdGK2W!oWeaC6xFy82U&SysthTf6FKyCl zZU&wbTVIk3L*7m%o7n;1lNUZeoWqnpCAV07N2a{}Id9fhmA6ntX5V%?m}b>k*9@cw z&MK@v@pG1H(GLX2GQ~69@i>F=GG=sYDA=s&OjoN1JGqRw%JD652YtfpcXg;}V$!qL zQ_^X#GP1G=qeWoAq0(w&=^BnYT3xpLvd}kbrOZ_3CV^>%Y*Al-X<>l6QV3IP;Kk_g=4Is^P z)@qS(&}ol%o28^7o}@QKXER$y07rqT6MjlX?69YZx3t%weq}m-Gdu~?5)Vax(qe1D zF0#jJI!TxstYZgP4`e^Q-d<55TywyUy;Ty+2s11eEy)&KjxaVq6NJhQY~hI) zlMEI3^4+hz)U|&hH(RGF=3rCctb-EfOFPiSw=LuOjO=QaeX*jwO?Vns$J#mN_O_n) zEO%cHy(od|?VX=8uLTQ}&C40F1;%lM&H0uPc5;nCAqT43r$!`vB9y;DNzGFjyZPt1! zDi@>$nkJl=NZWOWBH4sPj^t&W>g;h^j!?C-^ND?+Zb-WGX;rN}F%^JN9M@(@zgh(|-06_sf+F_OFGjk2kbqOQ7u#*w!xP zPzB&$m_U@+RC&4yUpHB&%wkCRwLTtY{(56RV4Lh;4|B9j;ir$ZyIy|GULUzW9&I-X`!(?~Sgz^&oLBdX-hO=&%B|seF~khzG~G!&IXg{QCjRtR;wZAV zm6&j5{KCkF$M4p z0eNhG^Q~`^a)IlVIhI~fFwU?bqWjty#AC=o57IstNr^7WT0;HtRnqDfL2Vq}m{J%V zH7~R}9w#`|&sbVrs>_|>yf7vyOIwbRO%>oi6T1R*SZO-{<`J^O*y6=)KZ`&DL8tp?GZ@e67ItvVDH-CN87eDHHAWf7o?&F?F$=gsgeOYx>+ zi)!J;LQ>0l)XDa4rgTLx_N_>!ODjvq;yyMWPSRP;vXbnbV@Z(CV^cgCQm@{5&$2wh zdssTkdgL3J?3DLO|4R<(DiclUty z`UV$ZtX^Q&o(gIWQ8StgaF}mp~TEhl4 z2N7>I-ADHVbK%c1K^(hLF?&&2MOB*4qj*GwcE*(B5iP;HrO&hkqXw@~AMUYpV@tL3 z&$BCb-CFW-0~m&}vcoJ}en|ndeEA;g{J>~Cf7_UH`z*C9wc;|6op%ONmsG#BQPz5c z@WH@ClacU-^tnbw;A8^&j#kz0Q5B|8b>?vfZZr^Mt+W}bptqJVN4}LtyXqm->+vtI z-g(EF{p&lKhjI01ZhGzXgkm}6W8J8Vzf~FC7liyWiCpo_QzPS-4rTL=psFJw6jO& zKbXr*9j8GmvyQE}W?#vgE#S5ziDKHP>R8=Z4-62}w^Gws^cizko{`Q}+ZEzjm7a4l z-ERyg2CgYIe9sYk_V9jFXb|qj%$E$?(iT`cXNi)-?-py1j$hXUYob!JOeCmU16L3F znN^CmR%c+dJ;*oAkU2^rv)~q9R+XMEr96MWS)xkUd?F|)#0qZr%p8X%sv>=5D9HJ}CQO{ICIBO9 z%x3Mhc^3AIT3R4@Gq2|AkFr_w>O;IG0=s#|N^vCV+@{?IWc{Mk7eKwylb=H}hPBVQi|AU zaj9#^6+7w|6W}?C)mI`raCb@qF28f3ym$z^YW9V9A7UzHZx&f7(aw^`4g&2yV$`|= ztjj6#UzvFI7Ac)yPsCl?+Z3O;FR~Ax5Jg>&c`QvIb}{4O!&LqsN(p*OIWD4Yj#;Cm zuR|8TG2O&RS(2aEG_CGZyoy?ehC2|-#RhAUSx+w(6y!AziQ6%Y$03dS3NX8kFs^a%{y z!s&voPOvD0*{J+pQ9=3KF-o_@0fDF)TF&92V)nqeQOm*yVVWsoijTSG0yXxPLFUnR zxPhS~d+|(x{#KEm3rMQ)Erxs)bTH{=b$Dsnyd<)?o>lu36i^D<3j|u)sc0;u2VD zp+>IffSN_(eq!W?`7AdA&WdZST9Uy)o@H(`PQlTNZ1ZmA6t<2>2Us`>72WR6e$a`o zVsldTqa4hQwRI5%anFCu(Hqt0tIR4M-OL=+rJ#FM6=uE@dwu0MICzS+yT&5^-mGPS zk9Hs~)HQJlL0u|4uVcj}KI<08PSb)dU2?_O>=rN+QEc7mCPLSCaXIFoTTEB;G6Cvn zJf{Bu?YPwLtQ(9lY2(&db#a1v!w%ovVz-#n!*8-IzZ)8l@^RKLG6sRQiEp3KmI3~jH{a@4T>Y7M{_!61c+Nilo%-JL+F#E%Wvx&b-v(JO{{V95@`Iv# zGo-$d`N!`9=69;%RLSBjXN28mbpVvwZ2BE~9ihF!thoC|6xOx_=2R|&q{n=c{Z=%_ zT*de1W_N3^6JLxt_JSmg4aiUeK-E(SGvV+_=kdcw8+X%qKDYClP6iTW%rpm7;@ly!v>+50YJhIfU2VyjX{;%v}U~% zJkZlOFNxPO-Eeu-%7wMEI0d^n?on0_C4Jzd&t5auWR7PN{{Yl%HD+#aWrbA|PZoPj z^qiqDxt-lhU%VY#S9Z61;w*y3osOA=psq@%$E8JZFMau$4a=QE-PXEK7Y9-_bhn*z z81)L`@rVO$(MIKJnd%x*dy2kc5`y`Rqh+HNi3%97{utNKTCRIscb0=KtxPoS+9=wk z;GwF#kfB4tXeG|hYs9BCTQ9kx6^#n31a|6RbbHGSe1O~?MWk+z6F-WD=yjDYF@5X{ zICRD{pjzslI?U}xan1Eha&H{MmahJ!!B4W@?uyZXpYf+4=Y^M9b z67u#uT)~{Qms#rkh#@Q##7>?J#uCMMFI5E6zhv{@E_qSN()J0p*2^lRN(aaSfz&!pa&8#i38pBV&$e zm<9u|#r#8olfYvW>|+Jzwk4i7NFUmVRul~9lFCA_``TSvn<-CdcOLk3ik>Z&ms<-J zSn<|A^DY7Rm+gOr7xp1lQA7B^u|+j$J}38Xre%>X_xE6GTG+5${ew|Q`66qrN-hD# z?f&r__=K{$Z&W`zWic&HpV*hY{v`*0iAqAtxhq{)=dAEYe9MKXYySWfZD|yWvhO5T z+4OVh>(F4qh)a8x*T)Q9eQUb^04J&Gvj=ce2}<-XZqFWoaR}-f_lNJ$wcwqvQg)R9 zFCUB^P3?s9rPg^XY!!>pll(;#OLO1qdqP#CeD5zZunu|!PKvnY@N+Nw&%f~%5lyR? z(&>WcTt#<{72?lO}wJyd(F-9uCmN{{m^iuerx)c1AL~4%B%0B8!G-Hm8D%W+*|{C ztQuNzdz+hw?p4Zg`=aYvmGXrY%=>p-tIJRkSIy_F7)q}_Wo?dGPq@~o`^%PO!<6Ji z$gt(!wJrlgZW}!klY4pyvhOlRPRF17Y*cRa@INbiC5qmGtlNz zd8E0)L*iX-BO$daOZ&G0ZZL`#nh$A=LCWVyd_yYq^qPWCzUE=vx-f2Eh-)eQC5J3{ zqAXXN?>7ig*Mu1Hv;Zx*yLF1<{g={cbQSiT z*R9Ed{_^ax<@*!u9mrTSUAYpozG$$+ARZf$%f-`>`@^L6j)#a%jeZcLp_7_jzuiu{ z93b;@(o8gcscb^ELW*_zOX}u_hbtBK&ujUHT{}&orgZHFz~t(1`0EsHL1vpV6iBL| zKRiS%&{NN�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%0AAL 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 literal 0 HcmV?d00001 diff --git a/addons_extensions/documents/demo/files/people.jpg b/addons_extensions/documents/demo/files/people.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd11d9b1618924e891976d65121ae81b063d5c05 GIT binary patch literal 146971 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 z z`Yy$xRiY6H$&nm=+~5;IB9(AeS}tleuqf)QM2`<-HCaF)!QdFmBq1Jirf;fr@#MIU z2&HXb`19`2s7^h?1S*bTd$g@N(~tHhGWQB7foM99u~TH&F5A#7-1mG8b$XSL4L>E` zYyCSY@!~CwjAIA2C^5Ea*6%>Gb8U>aGq4JIY4Us{)bgUn9|+WbVz1#;E5rk2rZ8+m zwSF6--a$su0?DA7_qYNGXiUbG^t{K^4?n|q$WcJutGg&w0uY!RMkf}LZBJ#nqh#nD z?5tK?XL({D@)2f?oM&J6Ov#CuIq#JKgYWWYA%UXkNIxn603UT>J}-9q6`Rw5#>u?QPCTg%J)ipy zT|2ErX6f?>kS)-=X&Lnjja?xgHZ(HVcP72Xz-h9W0ups53Is40EpKpeP10Ny6XQye zB(1!4$YVwJ<_*!pmYjsX$_%y;YRKllgTu2JkU>6X8%W!DmCuF=i`}ShHobDLktCk1h%r;}s zk>_Q#wC1yBwL2zb94AC&Q^P@8ty-nJz6#_NZ&zhu2K*$IWWK>c$)qdb6nzSJV4diX zqANyFk=#ZtS||hnphDdHARL3(4}~BBOpfaDq&gu@(3##~Pbq8d)Fn?8xh$=P$?^1)TGRvtth;jQOUtlVAjnjZ8)9&>j-L@As z5S%HsciNV0j1M!2>|TmC6N3nLNpVtPd|($dhbJ>3#kMG+)G?#L%XLo8nB&|a5N^#X z?NBMRFx^_wVDOAUmR%=6T|P4|GHyt}xK4@Ucn@#YXoz&|_w9eec}#c?W5Go_OGNS! zqG=X`Nre0+oV?e0k(!hbPJXKF5vA=kLYEcx(rdUp6xoKLe#-CntOZ-JeUKoLe&Id` zhp?Mz+KSguX1NW8T-W+g{U73(Sv4 zQ@5Ve$Isj*=JiMeWfI36Ac8pE01!=XME<^B-op1mpB2?FHbTMZoX2XT{{Tlst}4d` z8KW;?w*{3nl*ryxv9hEfztK7d64PZh!0K+BQsdj9*}j~Q(K__JX>y>o$kw9`Tul@^ zjg#vT+~ta>M9!;&8UPyWiYwR*r2p7+&`gO-CkkE5V{| z2;!!SS8WAb(GOKiTNTnI5Cx{YX9OzRLM+&jov7|r)1E$#y~ohL>{qoFRzT;F ztP3Pp4!y_SG``HfWqru~7wp|WNm)#jhKGtarIvS@uUm?y%JLbx-Ws^Kz)kU zWbmw$;a&zuhJ;~jOo66OXpR<+KvwhYRmBwDLJN7^hutw@^lTv;L~%yO?A8F#6d65A zd2!`?+Vj1tn5}aykZ4@^*gz_2qq3*fgj$;;P&`twnr&b5CY!Jm5AvwKKvOWVn#Qm- z(?9wI(26I))})c^L_w}7H@zlC3TtkhpD`hTsb$^9f{s4gianA2v99+El;lM5{Sbm_ zONbWK8)1rR-a|ogSve#=Z{aYkOhdB+&2r?(nen^^rV9|;kE+Sfe=a`BqMti}9*PV` zR84DB-aZOHRX~z$-hn;Cmb5H*!J=hQs#mEU_grCtzQr&uk}>@E&x0JQE9f6{0W;5O}-E6 z-=c><5tG37%Ng#hSUOPwS|K)JMLCzSa|*KK5V75f@Hx)LI!)W7J2d|Qf~=Of7RcUM z?m~DW@e^x1qt9{6K=Q|K*DMaT7>$n*<@brlpP^c8ITO9BDzCx07wU_fQpOxRIXHGQ zMmRh{Q_p~EF3FYMn;m|oGQ5aQoA}BSAB*!Q z%n^n{4ixKI;sj17C6qAn-v6+nC8uJw@fhw^XYk zq?!l_xVs3n+YJQvx`-O*QOy34yw(v)8yPC&*`lNipU;zAhd092Joj9GF=!{{YN~XMNg#u~^S&d~YuF zRA{iDbm}|?{{XZmPBwL)LRXcuNsZV1ycLxE`ElP)jfR2~cef#fluUq_+}bJ(`;G_y z01yi-aHlOZ`4`74u>H{RbMi$*&&UsQwaVu+k98glTIIcDA1qhqBi%DUud;lWTrhlo z#r>2$A`mT>U90e~8byZ31rgx((A2!gQ=FRdRtnZE?3=(E zmHuiT$R0=8H1&au*KGp;Bi%Is5F^Ayo-c5KyKyCC-J29 zX^aM`YvDAU;%Mt~mQlF_*)}G84%F`H&%Hz-EQbZiBq2xlHeP_Ip2bQH3sXA3iqZB@ zV}Ush+pucT&%vFYRk92HlUmew>6Fbj=@@@92K%kGcU> zk!i%$6+o0&3UP7pFMTvEF>$(l*#H2W8v_RbAWhM~QObL0JO>K;6%3ASZFp<_4#X<= z-YOZu{bKARCsvuk0P?9i9Qd+n&Jfwyr_C$oaV5?+i6r=(p{d`Zj!c$oewH_PhbGKp z$A!LDJYt&PUv;1Plnde8ciFw`bWiH$NvTpRP#> z_CT&vKqk~|Tc1P$G;FM#k5;uu7`OaxKyW-S#8D)o`C3>IYj-=+pDE#yG44|1LdmA1 zeUOhofxAj;8)SvCY$0Ui$a$;fLj&6BzCTc-fYd~2BHEne*aTzXS*}o!+^-F4WI(bO z*}u++CFHnTDb&p$Z)QQIiq&bAD2dn&B2&ao`mpJ2aInya1%42?@r* zaVks_?1;mp$9cE6yFJ1&IkQ6VaBVZG#xS#=SuNR*`PSBrm7o#_J&NXq8deH6OG=_u z_!LL(d;`EpD1fxs15;7lv|D`>q6P5_XLf&t$ys37SsgPWvqdA?Tf>{kP<19VA35x1 zPXbOF^++J(UGA>zCQc22fMILn)WVw#kDC~pJGqI_xXFpPcSLymdM3$j+&#NFjvIwU zx-+HAH=|E+%2|A{?$@j?w9OVF$>+;G{)oc!TLtbF-4xLn4tOO-ESD@uB6k+N{D}aJ zxL(BqDv!~8N5qx}ju0Li4T6K3sMsC^t6_2hF`}#{gb;djN|zd#`kEh-L&wneSb6kd zmqfhzPc-khVvKJscy)rKcml#_Py97A!>#fV#-};%a*q?LXrh=eqs=KyY<7@}6XcO)J`LEA{n^iKqs-Vgg<{#6@u3~oKIWA{h8Xde)@htzHE zjBEMFDkc)=u)V&mSPbJB6aM|wIGs81wk9y0whM0)lak0<4Y;TTdRXuPe*JjTsS4RpPGWl=(Q8#T$TaF} ziT0&8RmxzqrqJmB0EDuPZ{@l^X#5b5&j zkN*I&NPZvoA4NAy%ey8rY3=n29GqrP0o5D$O%JdWM*u5K1e&6l@v&MEqSp&*7%wtH z3$Y$;%=r(f_D+UY%L|S6Af|N)1`ctokSUM()i{DTMau5Vs{jWe9%xxW-2`n?u!64| zVkd)2!qzB+;BBhGEdu=!)L#`cU+C{*gUOBTERnmphx>Yj_#fs&b?Bc6W+rhji-1oo zQBMnIhE~ZNhR$h3cwd8F2qMA)-o+HoC4)qR^e8$?lH#4el1B2R#du~|Z4*tIqv1ba zl%VnN>ZZhgrV~J;LJp&H$MgRHJ5&>6GI(WVu)Bw_s@^wHMWlk9L2PH0Vu<%8Mw2!1ZzDqCxmn)*M@*ia78YjV2%tVA z`^x)2WOVKV?&ql_acp*{$aTz18nN-~OGBONPynrpC0&X>6bhi8_tQZp)YA~@0STn; zEj5hEZnvUg0M z$)3(EockYCBmwLp%y6(mJMx@UjoKiiAg~kR+180^Yk(l9U=t%jb}2STc>Tw+emlg_ zx{X*Mrf0-4a@|vbO?mEyqBS5c$Up*`ZE6L`7nQe#*&%YN$H101!qHc;LEt%~b!MCZ zDU*QNEw66uc;tN(@!liJ1JRPzHU7uYujXgM@UuEZ`X2j?^3%hXCsl+=jU_*qMD9Ya zN(EJ`ut7lBr4;QX3U{g|*)VZx(j3y!BxF&s{{SjnOMWH39`KXL{>lEyleFk3+z~{5 zLUSA((?wy=}^6nfyslXD}ZR)aTb;ks< zpY}#i`~}vhuPdeIpZ@@4<<~OjWZ7^WSjW!4VS$jf`lx-7WJS&(3f)5T{{Vs4*c2Nx zsDuftM@ST@QZ4RQp`|ppl-(jZ572;|U)k;KLU9}v@Y^B8`y#AesuZ;aEGFS|o9)~5 zUTkB}iOuzMHy`9CIBSfx!np>~JOoIp3WDcis4uOj1mZ|7b7)w1Vys>1asFoQY2aOl z{Wd?M8=Iou+!d}++qw%=508UK|Q*Ay@cK1=jE`fKcP2t*2 zaGO^5*Rle{K>br(ZbDpFnC*v_J(XD`l}fQhV|TFFKFU%{tXg>oQe#b%O(}#>B9<@& zJ=A?^LgP${?)n8gfidIA2fI;Y0qzPC!q*eJ02AXY{{SmfvC9L9vOFxRjjneN2t?{} zrluYVD@N@FIEv5|=aL7|DUQMJTDc^vHU{9Rvmh*a(raVf6!>1~W)&k({_yoph>n+> z`h@Kh{z9vS4K!ygj!DK;lOK0Dn-Wf&Nxo8pnSt$K-$bLF07zKPe<97KrC1?fJi$A>?_n zxvyuaMdiq}*eS}|Lf9Z!P%71UTBO#B2)p-#+OKAfOH)Xqq=w9Y53%5@cw~*xoFy~~WyLfQ=j|LD)q|qCLA3&iS9^&Ai zBi!OqmRl$Qfl@h!K+;?5N{v$Tf%R0~$}-8MKTA8I6Tyw-eF}xUPxRK*Ct!X%+aRs< zo<5-qK(y`(?wl5+S_!g2?MSuaNZjb%>fi324%0`izdV2A{3!AoT?^X(0AEq{3WX4z z_EdOR^gtuH36Qy>M>VL(e}@~~JzemR>$;KbB1bS$;iLPWKFGf=N_lW^&Clwn9|J6` zV?~!5LL6A5XJ)4`SOq#Vn&x)}Sf-GGiG-fpA}m({d_``D{W2Aw-lJ%p5Z5Mxxyy-L zw4g$#_N7*D!Jr`B?w4k%CVc=&MoM(f`z%Q6qHUmfYO}(w01MP8;}$?vJ`@1>oVg7_ zx5J(2ogm-}^hEFxD546Me7NBb(jMU5M}ccR(VMBVio#_X^W}Q{Hvs-D50!ozf`dAA z53iYYHZX>C+(w`O04yvf7Y0ESTkOz)VGZE|=jkY#Wh)d-0oeeIk}6;JUH0lNaS z+p-n>H^L=2El8foa#aICcS9}_L^f8NW0Ql(qRAL(!_cO62$|C}-&3<_UVHm027y7R zOSz=i17$`yC2d1w$=H2XhZYpaK=w#2sNp>51i}9R$crDTr|uIn0ETK3_CCJK++0y{ zE?OEwx1SCCERo{;X#<6OgTYbc#jZX_E$%!GB40#p>b?{cWMQzh5?U-G(m)$0vF@7= zn&Z2pKb7C$rcBb(3trux$8yr7#ebOzB998I8$RD37u||E;%v~pvP9vtnuiosivUEJu|tCh&(z56OQMex9k4GTXTBsM`Sv@cbbCQ(n_R zgXpbLTa|4i(OU{3#S!98$dI(E{qhC5HO)ZSElhhz4GwR1kg_qIaEovLRG-+UJ%z5g zXRrHm3O{be8EiOx)Uf<%KqiqFM1)@;ZIo$Ei7u$*Eqiz% z(vs^bf&T#SZpA~8H9-A-zN74{5Q|0Cg`@M?vWr`MwOMGboV>tTPT?4&4{e85#2wU) z1jq#J^#Yzhu~AGZjuuDdJ0H;jcR@wOcH`&*$dicK8+fv8r#RHJypL^@Bb1f^4RhS0 z5n~UqMoFG*eU*Z#}gV+*yQsOU>4?WRI2P! zH>skL4xlYP#>&yR?%ng@V5;%>mAm&!CnwB2Fj}%n3e7ZcYS=s&(LjP#Z))~xmTiTV zd&qvtk$y&m;_Crl#GNn{KJ=Q-)~MB4LAD1rfU-)f3^q{&l1rSN{{UdA6!&{48{J;c zC=w{9HmDD(9bceAOTUkg{3#WpY!a>2*%n^s*>hsbZkI7pAR9J_zW^yg*1l9u=fSb^ zn@h}NHnz1i4T2|tqz?c%v@NZ@irhJ+8ChVW^GkZ7oZ(<{wzFx4w7jEj7QCUU!~mjv zqap!PG*iFa6XBJ!L`z)LVPwgS$fu(-1s5ir$zV;G^B>tVZ{`X&@Iq_&3(jdEg!m?W zPF5ToEvVx>(71iSl@@^Z6zsh*$o~M3)isUW{ep9eL@Mym!c~&26-u2)g(fVbNZdtt zQD(MuVPxh$v4_X)(^tn(#RP03k^nzD`>Navhp~mHz-m z%cDA8vpPKBJltoN9vraxtU=h%sXN4Z3dZY@2@B=}z>sK!$Fzb1(RAIrpl#8LK8e0z zcjTAmu719##_bXccc|d21d@nAvdXrgRW(#vRjO31Bj}48#>-XspWH4DaUAfA19r8> z!jlhW6V9_40YdObl0s%oRMH&Y!14;u>F01~h;~1jM<_ZC5z7w5eUoGaRXIzJ;Oi=E zXNNKGV~6uK3F0lEpPiz=P=;1bwA)7s(#X~U$U+$Oji@TLX6koiOB-g?c$hEwov=@N zB^Peui;1K|Rmz5eX|HKC5Mq`IL)!NT1F;1-mW+n^mE3IQ25_u-+UILx>?gvY8s|0X6jTYm-!Obk8i<)#wx9y>&R`2@d}NWByb!fY1zX`5r6u?18Wb z=$={}6i=DJMACyAbbtk+4g{{)IEo7I!kn%0&Gc#!Zym>fF9+?yZ~#1NA2efs)BGk) z9;Oi>1AQlP_Cf5nZaoV9n#enM3M`z-8p~~->9D-ew|b){&f!GRTpAFKR`RTP(*FR#zDIKBP*isc-CqjQ)J@x!-6>`?&`NhQl*q+21TS<2 zP)~WV-?>a@Cd%xCMyC)xf*b_K183}utae3Rl2wFC6=0w@aX{Sytng40wZ_FNms3qy zU+JBEV@zrcp+yo(0hejCTSU9nGy)tgGB!D@cTrYJC2H}$Q)-iZzb%Au@gO(|_5mBR zRkST1PV32*kL7h*k?d(>T|{;YckW{?`kGP2$+CbH)*xL~sG*AkjSEs4U2Z1Pq7l?c zT1aqr-45P+5(XdDj>EmYkq{2t~9^3*`K-LKcUPl4g_k|^4TG&Tv`89!%sdN!+)wxw-G zi6Iv-f-EM>yLnEH)Zm#r401D5N}B^|u1tQ?*6sTL0F)m@QEP_9Wptc|NgR)+@JAtI z^-$PyoFbg;AKB^bISnKhRJ*8}jqrifWMyG#y5Uo(F&{{Si}qPX1G5BN<0q8vq|Bhbc&Spd9? zD#1>cK-Q*V;umt~@>idp%y4##pQ@-Bc+`9>`yg0FT4pg0br%##_Dw81g>OC&jM%hG zL#&5h#Bvs1FcIZ6Wy9~Y$I;*Abl#;QIN1PBcJie7AN~q+39x=0k!_j;F7c9@?VU!C zaH55lpvixh&3eaT6Uzv50Uqjj&Zfz22l790{z8G@42Q{ox!C>x0Ll-0wXhBLa45Hd zsZ>!z_bZWp7ExzTiQV7vrqvKrS}ibu;#?hEgG7D8nT)Lsowe(s-{7d7i6w_Hv{r(C zA@)(SV%pSRDF(`E%UkNHshHU2=p&Hw;Hg*d=@v@tiZ3r9a1}jKD1x2VdY&c#K3no+ z5r@^)uf%YHwpUTp)~U4R$59gB$A05M}b%2EXJc_ z-G3;%T}EoGNBv#0>JlG~(6K|z`H%WEE{zuQG4d{u*oco5T`ZoH)ZuZ7>@ho@#3;JY zMvh|t0OGUZdWDQ2IWeTBmX?L6y2>+3Z0riPvb*pIf#YhCd_aX@gJ_58DkAaIa;QI; zUHy~6q61NP0P)JyDdj_r0d)jsnf6d5swcpdQGB*lv;siZ2u_qD_}ydyM@E=(k#ZB^2;t_FP- zu{IDut3}sb4ob39S`d+TXiot-w`Do{i8Lt!^0z(#d`Q1?C?`bVN5fsz52jC1p3iR| zbtJ50)EyhQYnp5n7{-SM6j9L>7P5#`2`P>QJ)y`x-w3Zjq=Hh{hXGaWQ(p4nZIZTo zO%;&KWWld*XS9FFTIAB*(2ara0?-Vgs1+M$YaVLPC`X9a$3#^E3X)l*pSdWuN}yV@~@X3K;X2ypie-$a$b*6RBmvt*JI(P&23KlDc; zQou#)r`whmHO-=|1xyKqTrl&vExrM~6JqHIHO$ zEM#FCSilIy%1n?A+n;^7$l?)&_jZXC_T{Ixe zG9R)$GzPUW3N9q3kIlcHz48e()`mhh}5W`W*TK>Z!;RBngak|}TiJFB_O^6n;d6J>0 z%VN|m#Rmi%xYhpvDvcXYlY)R2`BYf=?`uuD!h+>f)dgxp@w^M{(wa_!G`r;?1nBtv z7GFh_2xX>l=%2eDx?feOq$3k2vs```eF}e>ruGOF2tjLd_-F+dMTr_0kkVpKj@wjw zp(LfiBHC#IQ1Bqw3V01iAr1LY1%A^PmIjZQE>ISPV7bZjIFfekt%Q_OtxADf<)rpg znn?O5v{S{8m~gCEAfWC-EWJDXBHfSm6XjO<~zl|SbL*~_AJT$VAJBN}tJ zk(2Nn_ICvk@*WQxf)+E~Z)0`0f`=_3u1=$>tP~50Xa&S??wAOWgTiE&p|5QPc{0gl zKKCJ2>Sx`f`yg!p06>mkR)LjG4%AhU)u)hAD?<26Iem4Q(cfm$7+o=tF!I}ROoCT5 z)};9(F|d(p-D^Py_oyqs0#jSzudd>>@LxqSn42^J$BI<*;eU-fcd>JmSr{%LDEe>V z9NT?KJ3OW%YMNR=Avc08)QROi=71$g`gETQR2bk>Z2FaZG$sK~Hhlt?YHJ&%syHiA z^F4t^Pgb|lP*gr6x2J}&R1=CJ0ca46ISg<#=9>w*c(G2-9@|X_kf;i2C^!cyw-u(s zyRw@GYjWb*ui44@oj6A4TjJa8*#@+Ns1VYOk0Vfg!z+z8Q*@fJM9vJA& zvBP3K0Tii@AQCASJ?fwjzFf6oLR@?=l7oCK5W9H3T$YMj+{nY4((djl#uHPAN!hhQ zIfUB_Tn!OQ@6}i=k+u`D>901zX|Mjr!zZH786fi@aovSM)UXCt9HH^|u3PLvAPYVR zNe7f1gA*iav;Z$+*K{e>%53b>GYBJt+gbnNoMc2x6kP@}>4*V+M_&L@{raV${ANGMi zqHyJnOc!CFWEc*?Za^rx`fr6`mAW>LcT#1x;*aBcW8*X&N~p(~8F!)X6xja&5DuO( z?eVwm-9S^ z+x9$#(E7zPbNdcUxMarIevekhx-m^aJnl3nwb{w?$RmWqBUe63uCWE_!kDyXIz#3YiZ>)~= zMfB>>0N@}^1Zh#QRjaa4388aAa!FFY^hEb5gT#`wv?D)GelyLw7b^$>L?F?^F9p>> z4=jQZiR$$!azohmu*3aR@G|tc@N_*82(d`WPwv<5X?=JE!Pp_l3tKh;HR7H2LWn#g zgOqvlWZ?P~dRAD($v25F^eD%ST+j`TinqVw2)f8}yYaO}2X5oC1kee%(~LZ$Q9RH- zh|qANE0o|Y0G=XqNC4F!*xvUqHx1RkhalKvXQzP(lBg>LqeWY&3vo0PB%=8pYB+ab zL8~#bwSsaeasadUPn+VA&U?F;8?~*az)?Z%AnfH}wawV}AxVa8hdK-UwFk5iL22%@ zdIng0a#Ie(c5w7753OPeaotjZZ;QKp0d*1(D7e_{R>TESfN2QNW`$bJ%@)YR-FFG zlXSmkW!D2`Wy$$+@lEbiAq3T@K0@d0)I)w&*Cj&`I;3-zkAg4Mr-Q{NJ%rwuR|{Dx z+*LNcd|d}sYY*g>m{TNWfw57!lo}Shk~#!>1VhA>=w|-_&1d)ZQ^N5USRB)4XXSVJ zC|CDXQ}Ny&$GMMh4r$#0G-v&$XFqV6FcZZqWQg$gn*}(!gTip(+fpui(-B(j@8u8K ziM3YZq{^Smj1y;tqAo#`xKDw_lt;4ERU-3T1R!DV;;qOuBI8Igp{-OF$bQz#^;Q~~ zSP&xH`Y5NfMUVAro(Gv5e!AoS;Y|rXV{8xRVE+J-$`5FB2q6cGpq#;MJ747~@Y_i( z{{U&=uB*`qWE0#6m?qvbx=&Gfi!%Cj=jS&W`Z+KSVx(h*vCTFLCKoy}rOnyErbmM9 z4{K%MwLSC7UVH2-g$_GNc?I7peq^sC*8nv_%x1<#xDAR2^U(m?R!n+Di5c8VZ2gG- z_Mm&Hmqh;nmQBAy!A3Tf127$lcQpGnCSi2@;qE(>=^`-1<7bsC$SnrkRLzVywEaj; zfsV6gkRYMIjRfOiIXJ2a4pRlEIMB8K0IZuMxQr63@YKHb{{Sn03;bIbv`$|S3;k2^ zW@n@o5c?-lHmm?bJb)2>h6*04CTeY$IZcu1)+lkBLyo7ZCU6GUhY%>zp?Z^s?I@7a z*U-Je3T&*FV?Y`l^Fd}adGewj&9b6k_@#S~u%!b(ll3W$9|#`w6b|K}s9C#XVEZ5w zGGQQWQ@StW5ghW{C-_jSqe-+)6vE3bCi z!hBCJhjHkhBy{+sM=|`({#X5f%C;6r$3-yaH+KI3D4QWk)dcVF^x<^HjYyn5Q*rHCBm6L-l zkD0Xf1pSZlAHQVrR*mW=!UgS*?o$jWPbxzef_6_Y^1!z{gxp9B(y%&n z{ScTC(N0cbEh6btwhF8-CAy099=Gt&-9>L@S-%U(X5Y-VVgMlLQehO}gprr9jns1j zOFX#;cB$YdMzr70ANL*9(Cs4$A2SF1gvnW{q&YHHkxEEEDYmCFtdU2DZa@ADsdRUP ziI(<9-WQ!wxpchfj2%uRfjhsPTcS|Oj&ft3H^tfQHa^5DC6VGPXzuFeStiLosLRw{ z?9}GKTzT|r0CC_zBVyj*sbOdlk>%BSZr#8C01vXon?De-g_$4_@pjtmoZMzdd~Q*D z$t0BoxF&fbYm5VuwY;!Z1!qn3;ZE=rRf<*{M{P=>h)g zM}k4CJOxrvCCZ}!H%izNR;C&&N9HN61XBH*E-65*F9kAanrmkZwAe|iM7Y@jaucLR zs<%LXV4O`N!yZ(Bnlovc{T~}8rtP%lV6+tb01yIuBe3n&-lMwI92GpOX|jyqf~opk zd(l;BQ9u$K{{Tpy=f_YDu&5?#{Hh}fngAk^hSSTnG?u-kHhgb6&K_qPQ@|+hsGr;~ zouY|P0*hRwh36(1$@$yrhzyz&?g|}W7-8hTvf~>coG0Pq7B$rOiuxwa5o3Tp04(=3?I7g5NG}${l{1hYwPl+IN3%!Utg^QlXN0{Lp zya_uy>V#GY9hKZ{LddYZt}4o)T;jaP@O^?V-TWp*(AEHpfknvjZCLDpa?%wNR=)?F zn5cJJFd$*%Hq|!Oasp$>WrD4x!h>3wGtQCh5n$3q`=bb<@gYR*WmQS!%f%8!A#2(%%9Ee5;Hxfsxp7W;Ae7BQG2E=bK0L{pO??)p`A1TV9ydMY3LL1i z-dh*tzI{^zH9XT+GcCj+G=wx$Q6*5awK$Tk%C;UGul!3ss>2Z?fk0B;iLj_?X(&k2 z9B$Ac`Dg5zHJutC>J;!3AYljRkDt1h8xpr$NAs|M$Wi35=^?|^6}b)@f~1Vw4&B1g zJCFEJhg)Nj&1vPJ>`{^D!(UfE%s^wbBB&-b8#+ZV*l~o=;N;I6_hXBj9wQw5;&U~;GsTmp<1F^5sT*PYPeck?u9D80oOKf;g!5^S%O6f!X$$3{sZ zIteG~vLALPo=U19rw~ZGM1pA@?4}z!g`)oI#nDBM52^)IY@e`1{{Yb{z5FOEMH1U_ zLq?iRkQO{@YGyQtA{J9Sv?oP3nReeq*RVOJ>>w>~<7!gFE0}DcS*7E2Kq0^*(J*rAvnmN_G=~Q?q1MW&bfy{9G6)qi^!={6~f0>_8P@>;!zJTbCsO{lB14|1Oq55=yM);qL23k&(RQJbmxh?+^$FOA&Nkow02V#JRV8Y0 z5(e`25BUkN8xT-EfmAQX9-o)4W|G6po5)z%c(&VL;GzNYLi{tWgu0ZEzxpOviiSfRhE-9)(IJ)fv)Mvb$7|F7TkO2;e19BpV9J zC^prtMHU)Al@PeV&V6={LXMgt1nMZBLZk_*6q_Zgu;$xJF^x_5n3|B~h{6aX zbQ%$AzITFvP!vEb&1%^byHH@aA(9J3 zU=LRX6M-k=_IC;sWX2;SyHSPZ-dQ8(j8RiYIP)9o(YX5{KrK5f3e%z~*wVIGBz#h| z{&p3X%4bkxGGY1HDeDKS$Eyn^k3HkzMciyM`h$ zUhcvpartOt6qwKzp3_iu|L=qD$<&vmc$Z^ilfA@;^U%4gB2 zj%(@)H?S)BG(8m+N?xngV8V^sJl9ZhPX_1DT_+TSEKi+u>^cy1_|a{az#|J=NVQD9 z=zvHl(PghEs@p(oU9+ezP&Nyb8tWwnwt}<(UmX&u3GpA@!-O+BBN*dy!SEDjX#v$m zFt<#Smo-2eV7$0`h2|R(Zipm&Ap#9KHi`?%li4yz8d$&$Z$rY@C=gXRpWL8A{z86< z@$ed+$5DxeGl#(Mu~9#>k$Ip^dIepHB^NWxZwi5N1u(FeP*JwWDTja)Q%dvQO=`q} zq)aur$+5uJFlnW&v|O6oas`H})~i(G;X}h*fmSv81X$vM1hoB?_yU8)QZO1eV>~<2 z77+HDBZ3h4FglCMNV1dC11`xlBcCe|XzzxR< zu>+xnp~rBw+>z{k5R_BH+V=3~jlz;DWZ!3ju|u+aCc#db%KSE15#(8xNTaxsCjNlzD8`86nlX4a3l@J6tT7)*ZOlyr5@Dd7nbAc;aEZ*EXOu=QgU0d1(mI?>~sb6|Wu}(Hg zD^rt?1g&7Oi?E&2{{Rxd3C5$zPi?TBDd>PtDdxqL0U!$~n^bQ60BS9p$|q-3ie<&!&F@+v8DXd^ljN3U+WAxLH-8^%2gV>Fq3o5)HGw1?BYZwUtAizcN6J@%f zQEP}lxK7A9rLG#9jv>mPGEeMPg_F_pTKME4s~@aD9}x|jtXw=?>MV`7K}6X8P5+99RI8}K9IwD$<3C*2tW5=>)= zgBwpizAwdt&6YA){vYUr>q)y!062j1gy^$T7|IY1pTMwR#atPxvS}R?4;kH1|QdF+HEk;8Dxz7?T>O#L}F=KneSTX%l3U zQPfu46>ca(!bk|Yq#{^BJR!L}FN(?fBIHkq(`2RvBso!MM_|VA;F;9=RyJIFiDL%P zYc~O1ibb}r%@s{5ffT8wHP)RBzkX25#cZAGoU|IEjUO8Yay%)@#fr4|aA+z`E*3yh zFaqa<*HZx5Y1jZ!q5vb=QS&7H-|(v10<%G+sDRfY0b=kDr2w)mMlY1YiFL5kllXhh zqD9)&ER~>}DT*>IxF!W069DmSJfJbdo4ZKZgiVEZt>?z1v%<4>i^T&)2ZGm&1W`v7 z!9f|zpE2uW}t1PSXmu9cFPN%(9_$HvAW1>W|zsz?b)&*7237J_|Rpl2)#5kiVIE9 zu&9y;)mxP{StRhRqCy}mJRkw(KQ3_hZiWKZtz?qNCt?jNz}g#s#^`TsG4N zs6eHrLo8yC%6MA)Q5}$7hYGC#3$Jx=FL$oUz3SYmFx6D6ld`wIL&fZ^<(`XJCF#rs z!{TS53Ha?MKmF3K?!$oL7r4Fdq3Ew*5Nf0XvEhCctx)i}P%s;4q~?l@*!f(4;GpN0 zI2OOBEyI8g0#gcDt3Oyn<6EpECYl4F%b3wW_W5hmFGsT8+ z?oleT<#XeBwgMa!ClX!5j{p@0Su#hA%kQMp^Ct{>o*;w|>D?YDTzF9b08*%;4TDL> zfemwis6nca1!2d#=6lvICM)EQDjVCv`N4Y4y)Ja6JQ6*IY z${VmM?hZ^FxK9wh;|NMq3rfWAkxIrY#NwiYVb8 z<^$j5Rq-_a2wp{CbqAj>h~9|wBCHkJS{;Zg?GF!%+7_^Dlx@wCm9<)v3C3(-T^BEl z)7&Oa5OWQMCN!Gkzj10g;ux9dakC~r-3=FDf-DerCX% zz+`kak#ARF+xrwBZ;RnSD$?qBry|O4^$0XjDuG0wZr&E;8%M(IEfA62+aU%yb?_0M zdnb~vg(~1!36pR%p$O1GHQfSB+;(qoQj5OmYOp*hZQ)AoTGAB)tr3?>+ViTM#=FtjBjXKC#{W4p_$uxP4?hn)~F0T=b zDZjB~kzQclGMv@}GXZ0V!y`?#-$TNP?$;^=iIE&UB4`>Y1lNjT)KqSeK1wPn+H?gg zWh6&oWV2%lcv*O^Acslp{hU7i(;odhwf_Jsg%E`(-YAXJ*z04H%j!>v(tLI=TYVf> zxt#CZ^RpvwBJBpXf~eOhc|^3e5KS5(24>FI@E$<@d@Xrc(ZQ@ruRxmw zerOeOgxr>~rJ#UqF};F`jx2OUwy#mDL#X~I>Nz8JI$|008wKc4B8WDxkf}X_fwAbc z)4;Xnu(j>6Nw}Cbb-1GlG&xO`#5QyQE_0YHTQf%wN8D(VTHq5l9vqAalMv0+frdn;zEw$id}A`^(= zY-pQAiy;BBFizKw3jM1YvKJcyi+%l277*~JAKfoBsY3YKBP`z`GB5yEc20QZG8l+x zHhDqBf@|C@EGG1XB$T*QDHzG2mfIm3XzW5^ zjjruUj|Rdq0<;Syd6ur#swh1CKcXlxmTu5|#jQ3Pi{2sz>y>#028BQbBVsRcXe#+O z)}kAz_wdr3Rrv4WL1|%5no%18B$Ne6_Ur{UX^TJ{rbsH2mG_ zYRxUlAqe`M^}%+p2j^zCn_;R?GR#H6s%8+{);%4_`~Luyj?7r29|VPi;c%|qyA^T} znpgT?;mrK8%y7ECyaZnIN+6YdiYmNqoCTI4tT5ecDlFOAlTCBkdv_sFARi4NqWfBI z%DV`j0V(F}m0+M*Km^}# z&i?@5UBUVgorXphbBTcP?~ww=xsDENg@Ov8bsrCER*3{S4-nu(f-$?<86D?BM055% zo%KcUFv`Om&E=?%hyp9PSzQ`mDEx4{^Tv2`#_F&M@ZDqint5qes8L1lD(;Hdm0+P8 z3s$$1hll|+F!IowE5Xu+JOT*$JfK3bRf3-j$!Vui3npgqc;Ql&m=2J}Vqe}#{V+GBM))T(c@Le@&tcC{!b z6(Fxdq>4fsH3Zk$V9@kh;OQeRc;ZH>;o4UDtohhCA5f#2y5n_2oK8!JOx(l&EW#2^ij6<-TTyB|WIC5ZI| z{{YJ?NKBDm4Fo36!YY#s2z*+?d5)uKm7gSob&-bh)>yCPm-{>Xq6lM}=03kGf@>H_ zD%^i^7~-jIzZd2L)LuxLuhie=b4`TfWyK3NXme}!thdMoH-Mch+ZzEcai9}0F__+F zBHU9Q2o7j2^-Yp?g4$Xj&_Hu*f~Utc$CoqYlW;zVkfU${ON{&R`mZCQ<8)n#bKHg&s~j+DBwMZ(hmi6B>?v*nuTeiU;9e7jtTbAVH)Jf&vy+ zt7r)0WS1e6j@OF53guVt0@_x}D6z%Aq8T{iH}5kQH9yKEk?ezuk$mQXt6p4GQP;3V z$b{tMYt*Xou|WRyB0h_{-B4&jy5RKOD`~Kde;P7As+tveYTTmXV9`QGx;X$Xr2d;B zEd|)8{{Vqluy4?(;5=ewxVstOeFX=`*&}mb8^wnX3OD0Mi1Dy=g`!_BM!4U4*=amm zQ*tVaWUbwg3G9^PMEN2Rrz@r<1Txd%&jB#p#%4Ndp6jri60lbcThVEl{#hAx25mT%n3v5Eoyn z$&>)t#B5&>e3DsC2DoSm#MKH~>;k?bJS|aFJP0-lA+}H0tzWsdTLzQvR>%6H*4w#1yFe>)3}Oy=1=KHcndLCXLz!C;c0Lr%BkqA#P%okt zGKkd6{SlA=3SnVRvr!kdHTL+6r)iN&WX>R@)TjxNP8T6z#*j z9C!lPbzRj2$F|(nhm`k-dH#p!QzdB+iH-t zZY*FU0e-#%!mU-=RbjyZ;sVhuQeN$NM7GBSA^`xaC0MFd38WapNC-y4K%$;4UnM!2 zEus;4=F_`{r@)Q{uH^lZb2R`}gX#*gN`8;mar%sWM)2zhX5mAT8L=w?1wEj-=Wfc% zw;e0 zRCuMKcM!^s@5Pgw{B)JT# zbA>f)9$N?Ak!dT-jJ%Y5-5~OShyqY3J+|Al*R-+i?L-v*p7Q2`>|%bp5OA@=lcqdk zaw}n;+ps4C#`xORsE^EQD-nVH|;z{J? zZr&L$uhj}q#&~laMIDXsqs^$Mrp?&)a`M-g z0Hw~H$nryYYj1#@5n7WEASeLUT9hodfl44Wv^LZBZ3R(PZd7b_0!y!et>pMn@U^Fv zs?d$5iY_J2D#|Ssi;AIEulucL`!#J`+75TKd0YPFnpA3&h_pw9*sr)`E%hCb)GTb8 zj%vr3*6oF9rP+K)msJ$;$fZp&#?b0NnP0^x#GxRx=~{s?vcd(0lE!P?CmVDhqJA`` z(QCz*y$fr;p+6nMJm~zp;!(Q~-?EIKgo9yQihNGg$2qR`1s0Gd1b@B1;b!#HuO4$G zCzcazE2VW>j(WtO-*yyQL)aQx;mACyRm~tf4*+Og6a~-;gi#1Z)?Vf+EkC=X9gMCU z;PzP@BJGx^(uhSIF%hrRxknxrw2ddffMfvkXdXNnjgKtvG}zc&e#zPWM<*@(&nbGP zx;)Yah#OjCBZ8{I3hYrtL|ly6aL5lV3s=<}KypI8n%5NY-5^j-b&Ee>g%sAR+$PPA z$NG-~&`2xPg+{0ts4LpMJAcRRFYd{MbptOPP zn(%zG)bn;|AY>>v!u)Q~H~ZwGRjUbv1~gx(M2}?FJeLF^i((UtE`kpv*x2r_#q7|( ziK$n0bXB(6R;H3oxiUawaIwJ&-8y3CTd|4n{D?WWI8yYPL>U(*Bg&5^22YP8WQpS1 z;E#ZI^bv4W6>=7^MFi+i5TT+pMDj%0uqsd{-0aWZ4w2UhI*pj)Z5K^%nmU#X=w zVBBnz^m-s&?OdT8Pmu7&+SKB1$ts&lufT*#(9%gpV^^}I)fqr;4TM{`C>9Xn5CE%j zHlvH|cnd60Ls#v4lazjzeQvT29xtObq z_hC*IL{a>%92H!Y73>Nlmn&GuG&7l4&Cqc2*bcAB6I$^(6HZ zRjNUA!uuda_eVH>*^@&SEzS2$+_^*u7A&FVJ$cF(1ogaAIz6+#E(oF?ikbElapj}|2$l{QZg^m^oU+7--W$kL> z*zAOHl}@(ut%TaHRUlTNXdrI6LO|w7Ejt22=G(E){{R9HZ>S+p(I*kfa$>yh#RhIO zGO?u+M)hbl?O`A}+;{@6_b4zCK{i39%?QPAU@KTBha+XAZB#`mFrMc^3!%F#^h}a4 z<`hHAnp2}^lO?)8>eL1Yz(EoeXutO@2BLgvQX{!qn1}|EKMRTupu@5y)Dcv~=Qz+P zG-`?JGjc-2XYs`HO zno*=^rw364gadpC77+%`f)2zXjK;I5#3yGSck{JkXTm4KowG;n$oh`Rw$am8fN2HR znOC>eAja>y_8}5Y+79rGErdxQ(ZFt|iLVsgh!0{E@Zao@*njsj@%B8Ax@nWinXZO! zk>aoE*r4k~T9yY~ZY@EkruYxcI9)@fQHFmu4)MEou9wvV87cjebH=a8N^=F(w2g>9 zEkt#hDd-v9MO~1q!Nv#XPTDRM(0vw$mqK>=T%8k$qR(T(t(+-bu2jOPA{}idP^kyp z5A3?vNC0AHoQ!c_!JFe~{^4|t%8RMq1m353)EQAWY+Qy-5#iCe5LUe0KArLdA@Sa> zm0hZ^LVr<|%Ox`zo4Lgdpvc%ftSGo2I;SQO90DT6s*@r+?g|eldnk}7QAC0`C^QgF z`>i0+F(V>uRY;vVlYmilV&OebuzsRdiLfOwmP){ZpdDkX^VM zUG)i#Z8Re)sHmXU*|KRl!0kZ+-%`-hhW;K@+LxOJo@$D#qx*&L0aI16S8}W(*NNCZ ztNlAZIUn&sCek6!F7T%5YC9$km%vKX!sD z){tnewYe8Q$}T!DWuh{i$-|EAz0fc*>>#v-$`aek(tKr#LxOW0=Rzp|05f|O9@0hFk-)aBKV3wvCBkV zBGP<3@J^CKECtOLh&J14L_VY%N3U-R1xX8wm`a}tc1Z;9fIHzCBQ*jDKoWrzh#|}+t{uTrFx2eV zU(DT)_$xD}zt8D;vPAL7VXxJvVzWBlU+uZF2h89BAW&3%XeoNE*6)WMyS?d>Rx}4j z9DJXhF^v(o;bb5-ebGEF=oXOV8u9=|@6v?WPh-e)t7Ks6bM&XagqyK3s`v^h-#&tc$&i`8)(m5C@LyH6}WguDW=F);wcup zaEp$%9WVa?m1j%FmyXLwE>=&6w}C(Ob+XzPoQIDC8uJF1qUWzDS2V54fpQH5_-ZPG zAW%S*04SBPZ-py5jr%KSg%jc+#CwZr^4%cJNnCla3+I(IQHm^R_bKu+si-^_y|nLC z=D^U=Ih-*vPhGFJ~-&nD7FTiM{iseJ|wRW zYoa&Hcu$JF_KNw(2kYpA#efkbgwn27n;`(HQ1G9tWeD4}K-=D;iygQ)mfUFed;VnB z4G|433*mQzLrsLxE;* zfkhBWHdRd5S0OM}l-F$83uyLEy9H41WGBAdjaUodHlNaZ3nXB2 z-he2(i&O|&fwM`m*;=K0-NJ677(%;FkkCdxP?jJ-;ReBV$?>?H0Pcz1!CTgsk>RL| zB%;%?B9p^G9JKPEBtgw5-39_=D9GXgEo!~$hpABwhs02Qoo6`P?;G}GN9+}|B=%M- zD79nn5yYrnd)H{y2x=45-mzEhqSUI|)Tm8uT0a!6QA(fukK=jsym|8aKJq3xzTfM< z&hz}7p2t*|Bwc*fK6D90*EN8o6kRToDNh|e8cGE;gHRw z&P3SVYN5zK>~El~lSL6=oi`cCHlcEw=Rl6TcJv0GpqKXBvZk7ul(v_K_I!18==gbb z_|J~N)h#%Jfwg-Pi&AF(WfR_*I#9)3xBuXZlzj8!Hc{u80J zU~6~ydrW(EkHn1Grt=UHAi9hl@?5$4__oE&6Gc@1Lj@`*CmZr)j-GX34bFtIV$8gv zacIP6_wjN@o}z;i%Te<`!t5@q2h!Yn+GlL)dvbzB#ZdC(n=h9x@9E?p*H_o{gw${J zg>8#&$-E;X@-@!XT}T@xC7uc)Og#ku}~C=ZQS%?r3I>vAaBmrX{&4{nq1SozM-hi~>*w*mVA63)J*X%cWlFIRgGnxY`#FS5M7Axz*RGOAt@*g0c-`ife7 z;C1D$D#HeVBc5n{FLy$VP1-(xRwa_f?v8UHMhO`X#jZ@txDN0 zbqoApnv~ySPY@CX>vohRK;Gv4n5q=hVgOS^wY*B@X95ADA)(sG^v8wI4F0x&kORm8 zliRZuz}~z7lOXI`ReqTla;im;;#n0?)H@+bTcwiLB19R+o-FHSnj3v_MPXK} zfwk}X;&^%3*z$zO&0N;pr~f*Y)kYc7MCTk2+tNOsFVXcgP-)y0RLVP0i|$)Vmq%Uv z>sl?!VE2b)%)*_@1SewL)^uY-cU}&ETRtD%xBx3HQ!7?nuRcLUbXoL2;c;d5J`PyBgQ1@vN#QO z-*OLY(tE@9YX;g#3~AoOaJ9$XAvn>-%I@>ppRTVl`2w1@O?e)!m?Uq(hE#_EJv%X5 z&64Z*wf3=!9mZw5;=SR6R$Kqm)yoAI>gAlxTc zLfM7Wv6=0_^^7mF|H;z#I$MC{>cKcg3xE&}Q&QHZCc9Tor?zI)@t;Iz+kXjd3l+X? z*G|@*ic^!-+SpatJSrw{lGVL3&Dxr>JrQ2>4x+r2w;4-Q~8iaE~PC>)@OiJm) z8pA2uYGMZ-ionZ4s8O*37g|x0I^?(E@Abg#9ZF~RgG}{gwrpb7!v)t?SJYGl5x-4c zy057B1WP7`&gVT}FRZq%XTY7%X){wEuHhKYk!Uter!7e<0h$L$(y)&>#;u$DgAAj0?>urtl~&zOADG4WMyZ{_5wNF zl_$nq4!cz7BCO^51cKR&YS%n(r6PJC$HAu&Kq$jErjxbhDz&YvJS@3!c-P z3kLjS4!xhHE!NiQSQdFHY6U~^y_ajSD~{>cG=A(tMY6Zai_So9+3^v!iEw6GM#Y?s zzQDB3+ZZz&nq6aS@8_4GP-VxVQNgEc56T16xNsNpb$ zK)I){XFQspbh9rNsyhNo0+o-(Lq5u~pB>y@>rgZWA(d<#g~7&^t{Be>ZQxhMa&CEZ zCM1Z3I>)ihIfG$pnFu4s#QgR;V2e|!@f{6s$rWW`+@I#+KUSXABxJCn3+;kjFcTRKm8kG~op&ITFr>Y-U<#oOVy17c{>3DRI=s(C|GRSTA*5r;1UN2H(&{TU5<< z-z&2LE^45e%MGAD7>PIVbBi6`nObAM{0VI=fnE#maFQr_|66m`D-I_wd~^bvEzSXp`y zROhdxG}sRvwZNz2=9tzK&`dhL;+|ryq*Krx^ElHu05j8;{)Z;};5%>RAZ(J^9d z@&mAW4;?65mwR}Oh0^g`6|Yyo8H!Cu`$+t#;Ebp6%(Gfo#7-!TqidTGMJ3EP+a=}l zE6?WJT=7=UsyMHV&R_75ECs+|?)X0jHd+?{pc~PHDKED=D$>eO2})OHKE;X=Gwp1RbE| zjQ2BdC{NBtx7LqBr1=hgVtTOqRP#T8%5n_{?4U@-ByYDofj?3)0jkU`rbfbMvPC{} zGU$ueSh0a&)|N3LiYx4ccF%EuhYZ+xgSRCyHCbn&BN8Z!s(2IeB=@4rewzQc0v3TJ zn-$Hx_CinfLmYlE*iH#}YO<2?o&jlf&HDt*VgE){I22QaO(Bbe**Tt62LANp9yklr z>1*0y=A2)rwU%W$vw?S3P5#2?&R?%`?9n(kjQ&F)9(|>OSN#+2=~yXEYxh@Q0x#Yk zFDzg=G@uxvA{Xkjvrn~5r99u?+S^VvHO)RItY<4yGQ+Hc_f&`&@U{u?(w zzMgh;%($=H99$Ku@1M}D$j8aupatJxU;6Jw*Z4ZiL4smS1pGZVnMavf&iaa0Nwmip zl}!Q77`#|&T832L_DVs!NdKPbx^8$y>9?%UDpmUtn|MSoz0=Try@II*OP7&sWW-U_ z?Oy8UW^H~b#^Y*LJd~W0YBsp+v148*G~WyT9;HXz5ck-$6SEmjYje>~X1%s;c2{1* zA_%B>iVA;eVi?kKOlz1x6+q7j`#@Q&1tM*dJS=5OnucL!RxBiLC5~ zcnjzZh=6~SoIidb^Gss0BoZaJmbv(>7^VS*4*A~{>VBzhF2^oez+jXx$YH$^2I`9v*{l+ z+RYV7USdEhe1b5X_)??|voZ9J7kiI#`0TU2e1rC2CzGZRA1B{Pu`suUDXWhMn}?J( zt#GRC41 zS45LXPZHk-KmLD_~3_ z9kLt1m^SP+kZzQKnR~&4i=N3<2{VR8ODna-n@Fk2sG!G&0r{^2c_rf}1PYHrNe&(0 z+~QRs(O$;p(zJP3Om2{L%Cc=Z8+rKmRRI4P!C1m)SXRY>94&joCqph=;rcql;RmMA zZN?)6G-uMrsQk+P5jk=pf3oVAz0A%D(e;0iEzPA|P#zwUimQbE1m?WpRl9c8PDy$n zfS(V(G>`JHjHJz=W|*Dl;jC^HdS%PkJ|IWI|;svO$>KxkTv1Gmb2{lt`_O=$IKAAr;?u|n#%<(EP6Sg{{zf5?K>~q zB7YcYzSEevkH;#LKFtlDS2~f&FG#|99i}xENU#mO>S%2s;bL!1#&=H0>-YDoCUV}6 zc*_IVilYOeQvEL3T%Ycfc|#)mUg!#J$rJI&M74%t9ib&`Bqbqdd^4SyY4Ha8-w+~f zKkbLV#OcS&I;Hm2g_X4&lhFdN;fCWk1*|&T zir{Rc1FL8|x>$Ua=_A;4AYVF{`fkGL!Ic7*@%Ftk^YRSVPI9eWyC|X`CiM>R3j}5X zUzU+J>`pOD^NQPv?P!gaU14*7j%OjzkfbVnhHnShziVrZZG$gZAr{2DbIFn;uL)EN z#2eh_?gYvi$FB1^`~$oSuhu~uz+TJYs6H7vid$6*+eKHq#}8~Ox4sPM*3g!1!}=av zGvrj*-62aft0(q(NRvl`ni;aHUB5o`|1tJ0^DhcdQQN1~BrsjUPLICl1&_pMVk$#^ z%s;wDim=k0U-Mi2xqD;XS?Ms$k%WZrxu%=1X5}9`CzLiG4~m2c7w6Amrs_DonsXErxbc~tQOyBuZ8L~~ zERQI!1ecHF0nvGtm8qLAEP&BgZW%~P+C{S1xRD93RvqqwCsG*R z!Z_x8)8t6yc&O->~O_c175s}?o z?%_EntL=F@WP*^@$Nhh-2(cR)|7Vsx#UP?n{xBT#F4 zKG@0|?iwq&{m9&TWEUq@BAEpvsc3Uja&ZlO$%SjO7d6NJcqkbD9MThCI_n?ocE#>A!H>7X3M=0i*A?qF3lb#76#B z=nQ|^OC2iFMI^S`=UkZnjDVPdlev8WHwvA;l%*@>giu6Kx&A6+zSxRRZmRljQFFBoauScxvb2y2r_|Pd1#qsn%{?jWTYDm#M_R6-H*>u`899-)eMBK zZB)QB0HJ!UJJ&!F7?S&QgD99EU%J7I!mUTsJn9i1QR)50KR{qYM|z*({D)`v8RhoFr=cI!mkVd9o`&S67r#_<)vP1aoz=r~saY(}} zLb(|BE}WA-i;U|lsBB0qpJ9`4V*{1X@`-{A?>~a2j3W9Ne{WCftqjnMvW@S;DftY` z29JYGO`5|(<+<5V;($y_z*6w&t}A)FR6&9`cq0v;VZ&wVwNuQj9p0oe7hV^e}d}Rs*fv8}ZzobkRx6 z%TWSF8aeKX@gl7`k^z|SIg=9;wqcG1l0XKhyvftu@bUWeHWV_2gVgt@Y$vd5L5n$E*z<2&Dr#W_4T{mWA$g)5K2a-n+A|jc@|%g= zU+h!4!H$ELoMKp$8BPx%pKC%3JL!i0-vOy)m zXOC8?$sh;#9Kwoq74xcrZdhMu!$7_J7GL#7X%NQD@WJuq>2f5)k3{1{!cIySZ-6fkZ5I@qN!smPlOj1tf~3T#W|rDEwK-hnN(3X zUOi3O#v+~M@#)@)jl?LoBjbmQ1Z7dObeNrc%FMPcyhx>Y{;Vuk(iH;rJ>d4ombs5) z7c5Erhgd!x2{}4Q_mL7qf8xl6A7}gnkgy3a&slPWBo7wIkDt8cYi6}(PPW-PGiFoT z#Oo`)t1oyADXNOv3-T^C|EQM2{JF@^w~C^w*29=#)6*|s0O+{eY7w^j@k-6`-L)>S22TL&7DcoXFiz(kCjP@+g;4+3@G&wX;yz>73_mr=|y#*G3} z=jEB}qS}dyMu)XcxzUC3A~^%Ttjb^UBAbfmD(>_AtmC0NX~|d#Ol{jX#=!`aT-RQ` z76M;yKrg65@@{G{1o#a6vA-&jxJPA5Sn1QtuIsO3zJ?0x?mE~I`xb~Zfw*g3B6q0hJpS?ckF8r^sD-ELuQmJD)K$L?G)!W8k?l< zKo#@0`eIqlcuhPTM9c6b2}F}h9%yeEAfF)EcvsTme9jT*b5}oIe74`Vr?l$qCts?L z?!PHm65SXu+4+c@&y@3@zr681`o$9|^ug5@c3^T0nWRpc^EoRUOB#z8cXILqtiM(s zK<9Fg0E!R1KHClA*u9J_c$~?w#oZdwp64TxqmE-B#HG@9=+$VjTeh%&Zr0O&!{2}HJ?I17iff!!I%GbJ z6XMu1rt@pnM00Xd=M5;2yYE1vEwG;6@RLWqF|O~`|9murX(#mVH6HjPLW$4H2j|w< z2gT{%JZ+;O%H*&iAdqzs@n4>y>#U^}7?|&o@QH#0V9iCg^?Xc1FsGR>I|FWS=M{7BXNj@(48Eceil}^q2G=0(s?|=#YsrJWW>H3^k}gS13`7XW?O33V z>qb*e;f>PuGmL1V(i8qz$Wh`_w}B`zlS)o7q%k3K-y9;4RwT;?n%{LY(4XKGZ`zj^ z-J4)^|Ib@F0?jRvz$;o|T{K}lW~0Zk`AwTwAx#TQ0CS`W#Av=Gvu_)#=qL_gnS<%R zp3$>|tN=?nv^ib;Uk_$8U5UZ}0fs1F%ZuCDOoL()_3Y?xW8|S87E*F-3w_GX{@XP6 zq&GeB`VKci!+)uN2t~Z&ct(i`ZX+BLIP*jiaLZJgpNz+i-C3P@y|vGRx!K0L-_n;T1+Hn^uSKX?N* ztvy(5jH$qLnh;>GiAlcnb0!TWue#4_QpdVxoJfhTn}`&ZK#j_1EP?D(IL zbEE(`gP0PI-o<|@oODoZ5t7OO_#;W4P$&CWlcfQ0u?jcOfjuq3h>sA3`(|ur&Bmnk zM0afHq96?09Z{|0hQDkQ34D~@Zy?NBLPTPm8Yx^tm0;+w?e`C${pF&P=gRdesQFS6 zSLywgDz0Lirb4$3ZNWuftge~u1tkTgcB?+oELhvoCtk`8jXeb)kZbl2V@WW{mvBl2 zRBcV|kM(#dkYr`pUhi8nN9O$lxO_7#55b{w9opcbtT*JsX?})NtJpkE_?_L#0K;3$ zDZrH9x{wYm+YZGXvL89%2=lvE_b?rUMRXEIUGpDkm|d7RUe$fzEv9xVb+^F z7WmQsK`iiv$eUGV=;!{L=9EO?xQowVRb`Eo#^Z)JT@`+mi6o|fNlRW64DH19zjZ?q&7ZrQ3LAkp8anwE`rr&pl4=UU%Lw4!8AhQ3rg z?oMyNyS;@nkbBBe+4XOfxi369rn675Gj&6C1Mo+1Pahq}9hX5+b4xGl;%C1wJ4N3n zS_CVw;ui%xJ>OIKTcMQeJD)2a7^+XZZ{OcWHe+l*QA;n)eLOZC^$W`-c(RR7WC;|g zd?B0Sl1tiK7CqdS)dVgQKt(&(sO3COn8~s9!l$Hp{v3x9xQ32bNdvy2&I`timo9d~sIkI`&L(P_<>tud9f%>6(t$&7Ho%#qH_ zi}=lt%>}~FQ;@^cSzl;^@#p(-&U8oh_Iv%9Mn~N4(rvg$6jK40WAnu)7www>C$YF! z00mP-ea6|6D?GefDL<<_i4gl zGzHbQ2s#SMo*4Vp{50ZE84q{iJe}|=R6DDI(=2=u-taxf&a~tXzcNv%#V`azqqID8$6M9#1qpBD}B& z2j9Dxi?YKm1FHu8XKj1&EJA4*001)cO(@Yw5KOm0=Pl3pRM^_5Z(AWZN|2#mr3dJiD*yYsan-4p9c#L!nZ z^Xme>w1uiM8F7MM-%jMXb$&+w$k@kDK{4`t7d9_OE@W(9XpAPGq=ct!E>|_BACw4E zMiI5#mo9oXb!2FkqCyCi2hKzpzbQ$48x`Hh7E}DpQupn@G`b9J%}lp~60R(138LQ;JRbjr&?ELAb1#lXW+@+} z;m;yVf(X&$-*b$wLUj!jn`nJYtPxazv}d(%H^62OGe-H`8h`$veUvhqJ7^79@d z)yPCEHjN687haF!WxApFB61?P2$Yk#qj5}Vin|D?Nfhsa|GoM&749 z^7ecaJ&bR~7g0mOSw}d1)Zo@`24~oGaT@Yn_nh1gJZr-Bhc}}7i6c5Yu{PM+Hpj5m z{%r|QL^XKM|Jk8b+IRqUOYju!dQNnt|9CglLZBEo0`yI*q*{PBMZ9M*G3lawI8QFl z3VD_9N+8}~8!ug$uQjCX3RXJ9A@YjCKzpi~_o;7%B=Q~&k2QJ^N?D<3{Z+RFWt;UA zRPfiH_PnYZI=i9_?a`aejwOypFm=hbBZm#O+5!aVk{%zP+6OV=3^KC^i6 z=53#+)l8TNG_v?!B1z&-DG8|T+*$`L(GBCMbb8z+nRi6?pfC?n;?JWaGzTv?YfEM&@JCRieZ7#<=!jE!^bM!` z>UE3SnNs6X&TVYnJ^pTSr%oRCmt=werFXEHWw~JQu`_~lK!j69v?ubn=@oZzCg;?{o2TD8+5`_ve%^c>l&rdlWQ}rMUP3O8zT_>n7c1?LF_~IBoyy zGYWroO0#1dD;P3+cLAn1vCXG|Hu&uK?eUCW2$#8T3=j=*jWR)>?|IjXX&~qDz!C83 z^PSL^9s{Gx`V6_N^}yoDT0xCuG{a2!mx2h5Bp*sw>T&rZ*;)QhUbX3~LXM1Y=cM-Q z21B+1s4p)V?MT6t>;u@*j~)c8&a|VUK~aZMN5Kqb$@hz;}HTz{c$qQi`qndceYMAV0xc8RBuFNr7kw=L?mbl`p62A+J zo@~-{C8v&=1gP}!we%A1>~{Q5nC3q~iK7JW#g2sFYB!wDc3E*f?XR$UV2|-g?8sf_ zJWpOKlhQSRPq_OLDNA##Wkx$5LW|Nt^5fAs&GgkviD=yhRg92z19=OjAUQr89w%o$ z?v?R?eY~6h=LnNj38wu!ZVBDp?vG=LArQWhVnl)P5^MqMfc{L`o(Q1(&RfbsVzXvp zu9!2H&Zf65db66dwHr4U$vySYE>@b!T{6eB61}(^+Wj(9HRLv4 zriy{1s90`r+fN^9AxQA)oGkd0=OR|{Gz~`w#~j?3TOTu7&+q-(`iWm~pAaSZM}$1Z zZh~{UmJ2VCW+%hM5%m-#ROtwMTC{lzM))%7g*XDND`ij?YDvL2Y+_=ef|X4kxEQ?( z7AmZkMCO+L&WVxDbND&l0z95@?J=Ktg=kx`pkUIZT?TY^qon4{8WTLBZZFNB9IYNf z*3vU*8Y;N)8OV4jE&1hVX!KGbSFN=Ddn%VIo2x{%-%;nxMDfsWbRtAk{1 zrcsUFcqn@@G2G;)F;< zw#nhycVqVL>JhQ^wCG_jjCE@}xUXNWu&7P3i^DL+lZq=H7Gly{V&cf!-Jcu2NhW z@!8nH%;1=^sIh>pgRhArCg+I&9zs`sCSQ_#~5JmE3Ekdw4bqYSF$tGL4i?G+zS8=d# zl7fA=%wRxWMA4p>JRpcT=HW-ClSDgVa@NAjgfV&KVz;vsMgVmT`SdqPVf6i zDwE+LRCOK|S(|dZRwgQn#L_ej7JFhS7lB;DRgS8*O`{`9gU6}MuIdvFtjHKDf3w;8 zI+{yrYXDTov#{L<5D$su93^fjs=_lz`N3r?dtgzEr4`IguFD#-nW@iur7 z_3em9!_TM4rzK=9P~iw1WIR^CjEDa$_XM`Y8%^r&Fq_PFiTJ|(sEov3Qzt&fzpz9q zQ_5;Wv?*&>D&wf^Q{sdzfI~b<^ig-FlmS|ogT$8bL=2cWy2`Ye3PSKkAecqho!uXW z;*H~@*KlW&^G^+hf3bpQG;|$E3N@yGsi8=9@k^Z~3RO+HV{iPTU;8n?AW8?huo0U% zX1WeBt0lAtZ6gxOcM@lkyv#VCMOv*OtrENI>~W-}4ZbG&Vp3Z(tUEzj+yX=CAK%OR zC84BkMMP5qqyn&Bh*g`B)Z$tALi5m6T7l0(Jbs`R%TagR2p-KNC0TBR(E-_C8fhkp z#P9j{AVfF}&khIB^P~gE}KRZ8uv;UQnjP!S4z*^_t;8fFs!6>!B;M~(88DOAK;suNGb_%DG`eq z`9@Xd66GRIsT?X+P#@lH%;Q`-UR>$a5^M$MeKO2bNC#8;v+_MkZ8zW<)Do@rhU6EQ zivsVyy9$n2R)lDw79IT~{#2WIbf}rNAfu`ZJ zA-Vd$T}$s``n%+L{8VD`X`cxcg!r0J6<6nO428Z%?EL3As#44mWln^B;I3Pqp+fi? zORRslOb;0I4z;s z?>;>R%SAjP85#B7&l0@{o??}Bp!hO}?+)TY9eeq*UmKL03wUlxOb{48_*$L7(GGik zktd%D;`ojbF^ZZVddr3gBJtOV+74WRGytTLa$Oe6Xdk{~-+dx-Am6>7FH0Z?;kSng zR$lY|)%e025yQ3+O3KC7<9gb~$318!8RHiP8Tg#<2`~0pX>pQpBlbh0M;P@dvhO3- z5}aAZeKr{$#}I1#66GXc{o4}6w(r_a8*xhGQz9lapdcS4oneh4#qW}T{wL)Q|5};D z-?C|sKru5MC;>)m!uLk+^XUH#0cfdk0RQi2>)$E>h=YrRqX6JH{QsQ5`@bhv{twLX B#{d8T literal 0 HcmV?d00001 diff --git a/addons_extensions/documents/demo/files/sorry_netsuite.jpg b/addons_extensions/documents/demo/files/sorry_netsuite.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ee8b579b80b6aedd2d9d14160fc841b33997de7 GIT binary patch literal 28775 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%0DPnLXAb(QKKhwL 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 literal 0 HcmV?d00001 diff --git a/addons_extensions/documents/i18n/ar.po b/addons_extensions/documents/i18n/ar.po new file mode 100644 index 000000000..7c450b115 --- /dev/null +++ b/addons_extensions/documents/i18n/ar.po @@ -0,0 +1,3945 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Wil Odoo, 2024 +# Malaz Abuidris , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Malaz Abuidris , 2024\n" +"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s مقفل) " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr " ربما تقصد استخدام إجراء التثبيت. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (نسخة)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (صفحات متبقية) " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s ملفات " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s مجلدات " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s مستندات " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%sلم يتم نقل الملف (الملفات) لأنه تم قفلها من قبل مستخدم آخر" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "تم إنشاء %s مستندات جديدة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "تم حذف %s صفحات " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s تمت مشاركتها معك " + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". سوف تظهر الملفات الممسوحة تلقائياً في مساحة عملك. بعد ذلك، قم بمعالجة " +"مستنداتك دفعة واحدة باستخدام أداة التقسيم: أطلق الإجراءات التي يحددها " +"المستخدم، واطلب توقيعاً، وقم بتحويل فواتير الموردين باستخدام الذكاء " +"الاصطناعي، وما إلى ذلك. " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "ملف واحد " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "مجلد واحد " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "مستند واحد " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" +"نصيحة: اجعل شركتك رقمية بالكامل وخالية من الأوراق" +" " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"قم بإلغاء تحديد هذه الصفحة حيث أننا نود معالجة كافة فواتير الموردين " +"أولاً. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "قم بتحديد هذه الصفحة للاستمرار. " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    يعمل بواسطة" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " تنزيل الكل " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " تنزيل الملف " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " معاينة الملف " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " رفع" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " استبدال الملف " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "المستندات " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "السجل
    ذي الصلة
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "المستند المطلوب " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "والمستندات" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " طلب" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "المستند المطلوب" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" طلب مستند:
    \n" +" \n" +" صندوق الوارد المالي\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" مرحباً OdooBot،\n" +"

    \n" +" OdooBot (odoobot@example.com) يطلب منك إرسال المستند التالي:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" صندوق الوارد المالي\n" +" \n" +"
    \n" +"
    \n" +" \n" +" مثال على ملاحظة.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" يرجى تزويدنا بالمستند المطلوب قبل تاريخ 2021-05-17.\n" +" \n" +"
    \n" +" --
    ميتشل آدمن
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" شركتك\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" مُشغّل بواسطة مستندات أودو\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" طلب مستند:
    \n" +" \n" +" صندوق الوارد المالي\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" مرحباً OdooBot،\n" +"

    \n" +" نود تذكيرك برفع المستند المطلوب:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" صندوق الوارد المالي\n" +" \n" +"
    \n" +"
    \n" +" \n" +" مثال على ملاحظة.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" يرجى تزويدنا بالمستند المطلوب قبل تاريخ 2021-05-17.\n" +"

    \n" +" شكراً لك،\n" +" \n" +"
    \n" +" --
    ميتشل آدمن
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" شركتك\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" مُشغّل بواسطة مستندات أودو\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"قاموس بايثون الذي سيتم تقييمه لتوفير قيم افتراضية عند إنشاء سجلات جديدة لهذا" +" اللقب. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "يجب أن يتم تحديد الوجهة عند إنشاء اختصارات متعددة في وقت واحد. " + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "لا يمكن تضمين المجلد في نفسه " + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "لا يمكن أن يشير الاختصار إلى نفسه " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "الوصول" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "خطأ في الوصول" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "رمز الوصول " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "تمكن من الوصول إلى كافة مستنداتك " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "لا يمكن تغيير مستندات الوصول والشركاء. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "الوصول إلى مجلد أو مستند " + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "تم استخدام رموز الوصول بالفعل. " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "رمز url للوصول " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "إجراء" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "إجراء مطلوب" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "نشط" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "الأنشطة" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "النشاط" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "زخرفة استثناء النشاط" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "خطط النشاط " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "حالة النشاط" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "نوع النشاط" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "أيقونة نوع النشاط" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "أنواع الأنشطة " + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"تُستخدَم خطط الأنشطة لإسناد قائمة من الأنشطة ببضع نقرات فقط\n" +" (مثال: \"توقيع اتفاقية عدم الإفصاح\"، \"سير عمل مساحة العمل\"، ...) " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "نوع النشاط" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "إضافة" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "إضافة ملف " + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "إضافة مجلد " + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "إضافة علامة تصنيف للفاتورة " + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "إضافة علامة تصنيف لما تم تصديقه " + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "إضافة رابط" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "إضافة ملف جديد " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "أضف الأشخاص أو عناوين البريد الإلكتروني..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "أضف الأشخاص أو عناوين البريد الإلكتروني: " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "إضافة اختصار " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "إضافة نجمة " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "مستندات إضافية يمكنك الوصول إليها. " + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "المدير " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "إعلانات" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "لقب" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "أمان ألقاب جهات الاتصال " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "نطاق اللقب " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "اسم نطاق اللقب " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "لقب البريد الإلكتروني " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "اسم اللقب" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "حالة اللقب " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "علامات تصنيف اللقب " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "حالة اللقب مقيّمة في آخر رسالة مستلمة. " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "النموذج الملقب " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "الكل" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" +"سيتمتع كافة المستخدمين الذين يملكون صلاحية الوصول إلى %(documentType)s هذا " +"أو إلى أصله بصلاحيات التحرير. " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "الوصول المسموح به " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "المستندات المرتبطة بالفعل: %s " + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"طريقة سهلة لمعالجة البريد الوارد هي تهيئة الماسح الضوئي لإرسال ملفات PDF إلى" +" " + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"من الطرق السهلة لمعالجة البريد الوارد هي تهيئة الماسح الضوئي الخاص بك لإرسال" +" الملفات بصيغة PDF إلى البريد الإلكتروني الخاص بمساحة عملك. سوف تظهر الملفات" +" الممسوحة تلقائياً في مساحة عملك. بعد ذلك، قم بمعالجة مستنداتك دفعة واحدة " +"باستخدام أداة التقسيم: أطلق الإجراءات التي يحددها المستخدم، واطلب توقيعاً، " +"وقم بتحويل فواتير الموردين باستخدام الذكاء الاصطناعي، وما إلى ذلك. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "حدث خطأ ما أثناء الرفع. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "يمكن لأي شخص على الإنترنت لديه الرابط %(action)s " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "أي شخص لديه الرابط" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "أرشفة الملف (الملفات) الأصلية " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "هل أنت متأكد من أنك ترغب في تحديد الصفحة المحددة؟ " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "هل أنت متأكد من أنك ترغب في حذف الصفحات المحددة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "هل أنت متأكد من أنك ترغب في حذف هذه الصفحة؟ " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "هل أنت متأكد من أنك ترغب في مسح هذا المستند بشكل نهائي؟ " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "هل أنت متأكد من أنك ترغب في مسح المستندات بشكل نهائي؟ " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"فلنقم بتقسيم ملف الـPDF ومعالجته دفعة واحدة، حيث أنه يحتوي على عدة مستندات. " + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "مرفق" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "عدد المرفقات" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "وصف المرفق " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "اسم المرفق" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "نوع المرفق " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "الإجراءات المضمنة المتاحة " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "فاتورة" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "صفحة فارغة " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "منشورات " + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "بتحديدك لمجلد، سوف تقوم الأنشطة المرفوعة بإنشاء مستند " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "إلغاء" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "الفروع" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "اختر سجلاً لربطه " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "قم بتحديد أو تهيئة خوادم البريد الإلكتروني " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "اضغط على بطاقة لاختيار المستند. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "اضغط على الصورة المصغرة لمعاينة المستند. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"اضغط على أداة تقسيم الصفحة: لا نريد تقسيم هاتين الصفحتين حيث أنهما " +"ينتميان لنفس المستند. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "اضعط على علامة × للخروج من وضع المعاينة. " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "العميل المنشأ " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "إغلاق" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "إغلاق أدوات التقسيم " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "اللون" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "الجذور المشتركة لكافة مستخدمي الشركة. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "الشركة " + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "تهيئة الإعدادات " + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "التهيئة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "تهيئة " + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "جهة الاتصال" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "العقود" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "أزرار لوحة التحكم " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "نسخ الرابط " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "نسخ الروابط " + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "إنشاء نشاط " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "إنشاء اختصار " + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "إنشاء خطة نشاط للمستند " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "إنشاء نشاط جديد" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "إنشاء وتحرير جهة اتصال جديدة \"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "إنشاء جهة اتصال جديدة \"" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "تاريخ الإنشاء" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "الرسالة المرتدة المخصصة" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "الأيام" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "القيم الافتراضية" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "التأخير بعد حذف المستند في سلة المهملات بشكل دائم (بالأيام) " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "حذف" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "حذف الصفحات المحددة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "الحذف بشكل دائم " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "مهلة الحذف " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "مهلة الحذف " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "مهلة الحذف (بالأيام) " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "مهمَل " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "التفاصيل" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "إهمال " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "اسم العرض " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "هل تريد الخروج دون حفظ أو جمع الصفحات في مستند واحد؟ " + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "المستند" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "المستند / الشريك " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "الوصول إلى المستندات داخلياً " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "رابط الوصول إلى المستند " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "عدد المستندات" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "اسم المستند" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "خطط المستندات " + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "إعادة توجيه المستند " + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "طلب مستند" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "طلب مستند {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "طلب مستند: %(name)s تم الرفع بواسطة: %(user)s " + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "طلب المستند: تذكير " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "رمز المستند " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "معاينة المستند " + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "تم رفع المستند بواسطة %(user)s " + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "المستند: طلب المستند " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "المستندات" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "المستندات المرتبطة بسجل " + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "مجموعة مخصصات إنشاء المستندات " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "لا يمكن مشاركة المستندات الموجودة في سلة المهملات " + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "mixin لإلغاء ربط المستندات " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "منتهي " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "انتهيت! " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "تنزيل " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "تنزيل #{document.name} " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "تحميل كافة الملفات " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "تنزيل الملف " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "تنزيل المجلد بصيغة مضغوطة " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "تنزيل الملف المضغوط #{subfolder.name} " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "مسودة" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "أسقط الملفات هنا ليتم رفعها" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "تاريخ الاستحقاق في" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "نوع الاستحقاق" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "إنشاء نسخة مطابقة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "تحرير" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "المحرر " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "لقب البريد الإلكتروني" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "ألقاب البريد الإلكتروني " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "رفع البريد الإلكتروني " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "نسخة البريد الإلكتروني " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "نطاق البريد الإلكتروني مثال: 'example.com' في 'odoo@example.com' " + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "روابط البريد الإلكتروني " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "خطأ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "الخروج من المعاينة/إلغاء التحديد/الخروج " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "الخروج من أدوات التقسيم " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "الخروج دون الحفظ " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "Exp:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "النفقة " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "تاريخ الانتهاء " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "تصدير" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "التعليقات الإضافية... " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "مُفضلة لـ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "الملف" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "محتوى الملف (base64) " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "محتوى الملف (أولي)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "ملحق الملف " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "حجم الملف" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "نموذج مساعد لنشر الملفات للمتحكمين " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "الملفات" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "مركزية الملفات " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "سيتم إرسال الملفات إلى سلة المهملات وحذفها للأبد بعد ذلك " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "سيتم إرسال الملفات إلى سلة المهملات وحذفها للأبد بعد %s أيام " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "مالي " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "المالي " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "تحديد الصفحة الأولى من المجموعة التالية " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "تحديد الصفحة الأولى من المجموعة السابقة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "تحديد الصفحة التالية " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "تحديد الصفحة السابقة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "المجلد" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "المجلدات " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "المتابعين" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "المتابعين (الشركاء) " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "أيقونة من Font awesome مثال: fa-tasks " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "جمع في مستند واحد " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "عام" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "الوصول العام " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "تجميع حسب" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "الموارد البشرية" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "يحتوي على رسالة " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "إخفاء الاختصارات " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "السجل" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "الرئيسية" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "المُعرف" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"معرف السجل الأصل الذي يحتوي على اللقب (مثال: المشروع الذي يحتوي على اللقب " +"لإنشاء المهمة) " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "الأيقونة" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "الأيقونة للإشارة إلى النشاط المستثنى. " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" +"إذا كانت القيمة \"صحيح\"، فلن يتمكن من الاطلاع على هذا المستند إلا الأشخاص " +"الذين تم منحهم صلاحية الوصول المباشر إلى هذا المستند. أما إذا كانت \"خطأ\"، " +"فسيتم منح صلاحية الوصول بالرابط أيضاً إلى كافة الأشخاص الذين يمكنهم الوصول " +"إلى المجلد الرئيسي. " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "إذا كان محددًا، فهناك رسائل جديدة عليك رؤيتها. " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "إذا كان محددًا، فقد حدث خطأ في تسليم بعض الرسائل." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"إذا كان محدداً، سوف يتم إرسال هذا المحتوى تلقائياً إلى المستخدمين غير المصرح" +" لهم عوضاً عن الرسالة الافتراضية. " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "الصور " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "لا يمكن حذف المجلدات المستخدمة من قِبَل تطبيقات أخرى. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "لا يمكن دعوة شركاء في عدة مستندات في آن واحد. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"لا يمكن نقل العناصر التالية لأن ذلك سيؤدي إلى إنشاء تسلسل هرمي متكرر:\n" +"- %(documents)s " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "لا يمكن الوصول إليه " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "صندوق الوارد" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "القيم غير صحيحة. استخدم واحداً مما يلي للحقول التالية: %(hints)s.) " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "المحتوى المفهرس" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "مستخدمين داخليين" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "صلاحيات المستخدمين الداخليين " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "بإمكان المستخدمين الداخليين %(action)s " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "معرف المجلد غير صالح " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "العملية غير صالحة " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "الدور غير صالح " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "مرفق قابل للتحرير " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "مفضل " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "متابع" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "يعد متعدد الصفحات " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "لا يمكن نقل المستندات أو المستندات المؤرشفة إلى المجلدات المؤرشفة. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"العناصر التي ترغب في استعادتها هي ضمن المجلدات المؤرشفة. حتى تتمكن من استعادة تلك العناصر، عليك استعادة ما يلي بما في ذلك المجلدات:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "سيتم حذف العناصر الموجودة في سلة المهملات إلى الأبد بعد %s أيام. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" +"سيتم حذف العناصر التي تم إرسالها إلى سلة المهملات إلى الأبد بعد %s أيام. " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "آخر دخول في " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "قانوني " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"فلنقم بمعالجة الستندات في صندوق الوارد الخاص بك.
    نصيحة: استخدم علامات" +" التصنيف لإضفاء هيكل لعمليتك. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "فلنقم بمعالجة تلك الفواتير: أرسلها لمساحة العمل المالية. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "فلنقم بمعالجة هذا المستند القادم من ماسحنا الضوئي. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"فلنقم بإضافة علامة تصنيف لهذا البريد الإلكتروني لتعليمه كقانوني
    " +"نصيحة: يمكن تصميم الإجراءات لتلائم عملياتك تماماً وفقاً لمساحة العمل." +" " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "الرابط" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "رابط الوصول المخفي " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "صلاحيات الوصول إلى الرابط " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "رابط URL " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "تم نسخ الرابط إلى الحافظة! " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "تم نسخ الرابط إلى الحافظة. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "تم نسخ الروابط إلى الحافظة! " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "الكشف عن الوارد على أساس الجزء المحلي" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "قفل " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "مقفل" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "مقفل بواسطة" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "تسجيل ملاحظة..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "تسجيل الدخول" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "تسجيل الخروج" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "البريد: %s " + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "تعيين الأنشطة على أنها مكتملة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "دمج ملفات PDF " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "الرسالة" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "خطأ في تسليم الرسائل" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "الرسائل" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "نوع تنسيق الملف" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "مرجع المستندات المفقودة " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "النموذج " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "النماذج" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "شهور" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "نقل الصفحة إلى سلة المهملات " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "نقل إلى سلة المهملات " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "نقل إلى سلة المهملات " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "نقل إلى سلة المهملات؟ " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "تم نقله إلى سلة المهملات " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "يجب أن يكون لديك الرابط للوصول " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "أنشطتي" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "الموعد النهائي لنشاطاتي " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "مستنداتي" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "محرك الأقراص الخاص بي " + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "يجب أن يكون لأدوار NULL last_access_date محدد " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "الاسم" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "الاسم / ملحق الملف " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "جديد" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "ملف جديد " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "مجلد جديد " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "مجموعة جديدة " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "الفعالية التالية في تقويم الأنشطة " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "الموعد النهائي للنشاط التالي" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "ملخص النشاط التالي" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "نوع النشاط التالي" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "لم يتم العثور على أنواع أنشطة. فلنقم بإنشائها! " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "لم تتم تهيئة لقب " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "لم يتم تحديد أي مستند " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "لم يتم تحديد عنصر " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "لا يمكن لأي شخص على الإنترنت الوصول " + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "لا توجد أي روابط تمت مشاركتها " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "لا شيء" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "ليس ملفاً " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "ليس مجلداً. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "ليس مرفقاً " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "الملاحظات" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "إخطار " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "عدد الإجراءات" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "عدد الأخطاء " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "عدد الرسائل التي تتطلب اتخاذ إجراء" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "عدد الرسائل الحادث بها خطأ في التسليم" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "شعار أودو" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "موقع أودو الإلكتروني " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "أقدم" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "يمكن فقط لمديري المستندات تثبيت المجلدات. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "يمكن فقط لمديري المستندات تعيين الألقاب. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "يمكن فقط لمديري المستندات تعيين لقب. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "يمكن تثبيت المجلدات الرئيسية التي يملكها OdooBot فقط. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "يمكن فقط للأشخاص الذين يملكون صلاحية الوصول الفتح بالرابط " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "فتح #{document_url.name} " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "فتح المجلد #{subfolder.name} " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "فتح قائمة الأذونات " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" +"العملية غير مدعومة. يُرجى استخدام \"نقل إلى سلة المهملات\" / " +"`action_archive` عوضاً عن ذلك. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" +"العملية غير مدعومة. يرجى استخدام \"استعادة\" / `إجراء_إلغاء الأرشفة` عوضاً " +"عن ذلك. " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"معرف اختياري لمناقشة (سجل) سيتم إرفاق كافة رسائل البريد الإلكتروني الواردة " +"فيه، حتى لو لم يتم الرد عليها. إذا تم تعيين قيمة له، سيعطل هذا إنشاء السجلات" +" الجديدة بالكامل. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "رسالة اختيارية... " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "أو أرسل رسائل البريد الإلكتروني إلى " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "غير ذلك" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "المالك" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "المالك: #{document.owner_id.name} " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "المالك: #{document_url.owner_id.name} " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "المالك: #{subfolder.owner_id.name} " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "المجلد الأصلي " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "النموذج الأصلي " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "المسار الرئيسي " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "معرف مناقشة السجل الرئيسي " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"النموذج الرئيسي الذي يحتفظ بلقب البريد الإلكتروني. ليس بالضرورة أن يكون " +"النموذج الذي يحتفظ بمرجع لقب البريد الإلكتروني هو النموذج المحدد في الحقل " +"alias_model_id (مثال: المشروع (parent_model) والمهمة (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "التحويل الجزئي " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "الشريك" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "الأشخاص الذين يملكون صلاحية الوصول " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "تثبيت " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "مثبتة على جذور الشركة " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" +"يرجى تسجيل الدخول أو التواصل مع الشخص الذي قام بمشاركة هذا الرابط للمزيد من " +"المعلومات. " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"سياسة لنشر رسالة في المستند باستخدام بوابة البريد الإلكتروني.\n" +"- الجميع: يمكن للجميع النشر\n" +"- الشركاء: الشركاء المعتمدون فقط\n" +"- المتابعون: فقط متابعو المستند ذي الصلة أو أعضاء القنوات التالية.\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "حاضر " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "العروض التقديمية " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "معاينة الملفات " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "المشروع" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "التقييمات " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "حديث" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "المستندات التي تم الوصول إليها مؤخراً. " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "السجل" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "معرف مناقشة السجل" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "الصفحات المتبقية " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "تم إرسال رسائل البريد الإلكتروني للتذكير. " + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "تذكير لرفع مستندك {{ object.name and ' : ' + object.name or '' }} " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "إزالة صلاحية الوصول " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "إزالة العضو " + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "إزالة علامة التصنيف في صندوق الوارد " + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "إزالة علامة التصنيف \"بانتظار التصديق\" " + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "إزالة كافة علامات التصنيف " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "إزالة النجمة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "إعادة التسمية" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "طلب" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "طلب نشاط " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "طلب إلى " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "طلب مستند" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "طلب ملف" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"مطلوب\n" +" ∙ " + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "المستند المطلوب" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "المستندات المطلوبة " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "الشريك طالب الخدمة " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "اسم نموذج Res " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "معرف المَورِد " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "نموذج الموارد" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "اسم المَورِد " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "المسؤول " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "المستخدم المسؤول" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "استعادة" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "مقيد " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "مجلد مقيد " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "عكس التغييرات " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "الدور" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "خطأ في تسليم الرسائل النصية القصيرة " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "المبيعات" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "حفظ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "حفظ أو إهمال التغييرات أولاً " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "جاري الحفظ... " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "تحديد الكل " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "تحديد الصفحة الحالية " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "تحديد الصفحة التالية " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "تحديد الصفحات التالية من المجموعة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "تحديد الصفحة السابقة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "تحديد الصفحات السابقة من المجموعة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "تحديد/إلغاء تحديد كافة الصفحات " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "إرسال" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "إرسال إلى قسم المالية " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"قم بإرسال هذه الرسالة إلى القسم القانوني عن طريق تعيين علامات التصنيف " +"الصحيحة. " + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "يتم إرساله إلى الشريك عند طلب مستند منه " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "تسلسل " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "تعيين إجراءات " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "قم بإعداد مهلة الحذف للمستندات الموجودة في سلة المهملات " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "تعيين تاريخ انتهاء الصلاحية " + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"قم بضبط التذكيرات في الأنشطة لإخطار المستخدمين الذين لم يقوموا برفع " +"مستنداتهم المطلوبة " + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "الإعدادات" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "مشاركة" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "مشاركة: %(documentName)s " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "تمت مشاركته معي " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "جاري المشاركة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "اختصار" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "تم إنشاء الاختصار " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "تم إنشاء اختصار في محرك الأقراص الخاص بي " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "يمكن إنشاء الاختصارات واحداً تلو الآخر. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "لا يمكن للاختصارات تغيير المستند الهدف. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "لا يمكن أن تحتوي الاختصارات على مستندات. " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "الحجم:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "تعذر رفع بعض الملفات (الحجم الأقصى المسموح به: %s). " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "المستند المصدر" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "لا يمكن مشاركة المجلدات المميزة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "تقسيم" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "تقسيم ملف PDF " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "تقسيم كافة الصفحات البيضاء " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "تقسيم الصفحات المحددة " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "معلم بنجمة " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"الأنشطة المعتمدة على الحالة\n" +"المتأخرة: تاريخ الاستحقاق مر\n" +"اليوم: تاريخ النشاط هو اليوم\n" +"المخطط: الأنشطة المستقبلية." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "البقاء هنا " + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "الهيكل" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "الملخص" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "علامة تصنيف " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "اسم علامة التصنيف " + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "اسم علامة التصنيف مستخدم بالفعل " + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "علامات التصنيف " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "النص" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "النص الذي يظهر عند التمرير فوق هذه العلامة " + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "يجب أن تكون مهلة الحذف قيمة موجبة. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "لقد تم نسخ رابط URL للمستند إلى الحافظة. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "لقد تم نقل المستند " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"لا يمكن أن يكون للمستندات التالية أسماء مستعارة: \n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"لا يمكن لمستخدم البوابة امتلاك المستندات/المجلدات التالية: \n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "يوجد عدم تطابق في نوع المستندات/الاختصارات التالية: \n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "لا يمكن تعيين الاختصارات التالية كمستندات رئيسية للمستندات: \n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"النموذج (مستندات أودو) الذي يقترن به هذا اللقب. أي رسالة واردة لا ترد على " +"سجل موجود ستقوم بإنشاء سجل جديد من نفس نوع هذا النموذج (مثلًا: مهمة مشروع) " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"اسم لقب البريد الإلكتروني، مثلًا: 'وظائف' إذا كنت ترغب في جمع الرسائل " +"المرسلة لـ " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "هذا الشهر" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "هذا الأسبوع " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "الإجراء غير موجود. " + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "هذا المرفق مستند بالفعل " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "هذا المستند غير موجود أو غير متاح للعامة. " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"لقد تم طلب هذا المستند.\n" +" قم برفعه. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "تمت استعادة هذا المستند. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "تم إرسال هذا الملف إلى سلة المهملات وسيتم حذفه نهائياً في %s " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "هذا المجلد غير موجود. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "هذا اختصار " + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "تم تعيين هذا الشريك بالفعل في هذا المستند. " + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"يمثلون الفئات المختلفة للأشياء التي عليك القيام بها (مثال: \"اتصال\" أو " +"\"إرسال بريد إلكتروني\"). " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "صورة مصغرة" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "حالة الصورة المصغرة " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "نصيحة: قم بتهيئة ماسحك الضوئي لإرسال كافة المستندات إلى هذا العنوان. " + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "نصيحة: اجعل شركتك رقمية بالكامل دون استخدام أوراق " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "بانتظار التصديق " + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "بانتظار التصديق " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "اليوم " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "تبديل المفضلة " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "تلميح " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "سلة المهملات " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "إدارة سلة المهملات " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "تكون القيمة صحيحة إذا كان بمقدورنا تحرير مرفق الرابط. " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "النوع" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "نوع النشاط المستثنى في السجل. " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "رابط URL " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"يبدو أن رابط URL %s غير مكتمل، حيث أنه لا يبدأ بـ http(s):// أو ftp:// " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "رابط URL لمعاينة الصورة " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "الإجراء غير متاح. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "إلغاء القفل " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "غير مسمى" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "إلغاء التثبيت " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "رفع" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"قم برفع الملف أو سحبه إلى هنا. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "رفع طلب الملف " + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "المستخدم" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "دور وصول المستخدم " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "إذن المستخدم " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "ضريبة القيمة المضافة" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "تم التصديق " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "مقاطع الفيديو" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "العارض" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"أتود أن تصبح شركتك رقمية بالكامل دون الحاجة إلى استخدام الأوراق ؟ " +"فلنستكشف مستندات أودو. " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "رسائل الموقع الإلكتروني " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "سجل تواصل الموقع الإلكتروني " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "أسابيع" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "ما الذي تود القيام به بشأن الصفحات المتبقية؟ " + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"هذا رائع... لقد قمت بمعالجة 6 مستندات في بضع ثوان، أنت رائع.
    لقد انتهت " +"الجولة. والآن، حاول رفع مستنداتك الخاصة. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "أنت " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "لا يُسمح لك (بإلغاء) أرشفة المستندات. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "لا يُسمح لك (بإلغاء) تثبيت المجلدات " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "لا يُسمح لك بتغيير ملكية المستندات التي لا تملكها. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "لا يُسمح لك بحذف كل هذه العناصر. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "لا يُسمح لك بتنفيذ الإجراءات المضمنة. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "لا يُسمح لك بإجراء هذه العملية. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "لا يُسمح لك بالكتابة في هذا المجلد. " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "يمكنك أن ترفع ملفًا من جهازك أو تنسخ وتلصق رابط الملف." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "لا يمكنك تثبيت الإجراءات لهذا المجلد. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "لا يمكنك استدعاء إجراء على ذلك المستند. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "لا يمكنك استدعاء هذا النوع من الإجراءات. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "لا يمكنك تحديث صلاحية وصول الاختصار، قم بتحديث هدفه عوضاً عن ذلك. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "لا يمكنك الوصول إلى folder_id ذلك. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "لا يمكنك إنشاء اختصارات أو نقل المستندات إلى هذا المجلد المميز. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "لا يمكنك حذف علامات التصنيف المستخدمة في إجراءات الخادم. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "لا يمكنك استنساخ المستند(ات) في سلة المهملات. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "لا يمكنك إزالة هذا الشريك " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "لا يمكنك مشاركة عدة مستندات في آن واحد " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "لا تملك صلاحيات الوصول الكافية لحذف هذه المستندات. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "لا تملك صلاحيات الوصول اللازمة لنقل المستندات إلى هذا المجلد. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" +"يجب أن تكون في مساحة عمل محددة يمكن الكتابة فيها حتى تتمكن من رفع الملفات " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "دورك: %s " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "مساحتك الفردية. " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "اللقب " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "bytes" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "أيام. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "مستند" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "المستندات " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "مثال: مناقشة المقترح " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "مثال: المالية " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "مثال: نفقة مفقودة " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "مثال: للتصديق " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "مثال: https://www.youtube.com/watch?v=CP96yVnXNrY " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "مثال: mycompany.com " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "ملفات " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "مجلد " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "المجلدات، " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "عناصر تم تحديدها " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "تحديد " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "قام بمشاركة مستند معك.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "قام بمشاركة مجلد معك.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "تمت مشاركته بواسطة" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "قام بمشاركة هذا المستند معك: " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "قام بمشاركة هذا المجلد معك: " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "كود الحالة: %(status)s، الرسالة: %(message)s " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "غير مسمى " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" URL" diff --git a/addons_extensions/documents/i18n/az.po b/addons_extensions/documents/i18n/az.po new file mode 100644 index 000000000..e1fd2617d --- /dev/null +++ b/addons_extensions/documents/i18n/az.po @@ -0,0 +1,2878 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# erpgo translator , 2022 +# Jumshud Sultanov , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2022-09-22 05:46+0000\n" +"Last-Translator: Jumshud Sultanov , 2022\n" +"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "%s Sənəd" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s faylın yeri dəyişmədi, çünki başqa istifadəçi tərəfindən blok edilib" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr ", etibarlılıq müddəti" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "Bayt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Tərəfindən dəstəklənir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr " Hamısını endir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr " Endir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr " URL-a daxil olun" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"


    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "Bu qoşma ad üzrə yeni qeydlər yaradarkən susmaya görə dəyərləri təmin etmək üçün qiymətləndiriləcək Python lüğəti." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "Bu şərtlərə uyğun olan bütün əlavələr üçün mövcud olacaq şərt və əməliyyatlar dəsti" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "İş sahəsi valideyn iş sahəsi etiketlərini miras alır" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Giriş" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Qruplara Giriş" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "Giriş Hüquqları" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Giriş Tokeni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Hərəkət" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "Fəaliyyət Sayı" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "Fəaliyyətin Adı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Lazımi Hərəkət" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Hərəkətlər" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "Aktiv" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "Fəaliyyətlər" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "Fəaliyyət" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Faəliyyət istisnaetmə İşarəsi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "Fəaliyyət Qeydi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Fəaliyyət Statusu" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Fəaliyyət növü" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Fəaliyyət Növü ikonu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "Fəaliyyət növü" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Əlavə edin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "URL əlavə et" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "İnzibati server" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Qoşma Ad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "Kontakt Təhlükəsizliyinə Alternativ Ad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Alternativ Ad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "Alias domeni" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "Alternativ Model adı" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "Bütün fayllar yükləndi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "İcazə verir" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "Arxiv" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "Arxivləndi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "Təsdiq üçün xahiş edin" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "Əsas Vəsaitlər" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Buraya əlavə edin" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Qoşma" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "Qoşma Sayı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Qoşmanın Təsvir" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Qoşmanın Adı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Qoşmanın Növü" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "Mövcud Qaydalar" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "FAKTURA" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "Broşuralar" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "Bir qovluğu təyin edərək yükləmə fəaliyyətləri sənəd yaradacaq" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "Yüklənə bilər" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "Ləğv edin" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "Bütün daxili sənədlərinizi təsnif edin, paylaşın və izləyin." + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Kateqoriya" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Yoxlamanın cəmi / SHA1" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Bağlayın" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Şirkət" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "Şərt növü" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Şərtlər" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfiqurasiya" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "İbarətdir" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "Müqavilələr" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Yaradın" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "Səhm yarat" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "Yeni fəaliyyət yarat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Tərəfindən yaradılıb" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Tarixdə yaradıldı" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Yaradılma Tarixi" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "Meyar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Gün" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Defolt Dəyərlər" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "Yüklənmiş sənədlər üzrə susmaya görə dəyərlər" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Silin" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "Etiraz etmək" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "Tövsiyə olunmur" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Təsvir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Ləğv edin" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Ekran Adı" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "sənəd" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Sənədin Sayı" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Sənədin Adı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "Sənəd Sahibi" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Sənəd Tələbi" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "Sənəd Tələbi: %s tərəfindən Yükləndi: %s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "Sənəd İş Axını Etiketi Fəaliyyəti" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "Sənəd siyahısı" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Sənədlər" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "Sənədləri Paylaşın" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "Sənədlərin İş Sahəsi" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Mixin sənədlərinin yaradılması " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "ehtiva etmir" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Domen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Yüklə" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "Endirin və Yükləyin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Yükləmək üçün faylları buraya buraxın" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "Gözlənilən Tarix" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "Gözlənilən tip" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Redaktə edin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "Alternativ Email Adı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Xəta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "Ləğv edilmiş Etiketlər" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Xərclər" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "Vaxtı bitmiş" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "Hal-hazırda bu faylda mövcud olan " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Seçilən" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Fayl" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Fayl Məzmunu (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Fayl Ölçüsü" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Faylın Mərkəzləşdirilməsi" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "Maliyyə" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "Maliyyə" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "Maliyyə " + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "Maliyyə İlləri" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "Qovluq " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "İzləyicilər" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "İzləyicilər (Tərəfdaşlar)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Gözəl şriftli ikon, məsələn fa-tapşırıqlar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Gələcək Fəaliyyətlər" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "Aşağıdakılara görə Qrupla" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "Qruplar iş yerni görə və onun sənədlərini, yaratma/ redaktə hüquqları olmadan, oxuya bilir." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "Qruplar iş yerini görə və onun sənədlərini oxuya/ yarada/ redaktə edə bilir." + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Tarixçə" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "Təxəllüsün olduğu əsas qeydin ID nömrəsi (məsələn: tapşırığın yaradılması təxəllüsünün olduğu layihə)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Simvol" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "İstisna fəaliyyəti göstərən simvol." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "İşarələnibsə, yeni mesajlara baxmalısınız." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Yoxlanılıbsa, bəzi mesajların çatdırılmasında xəta var." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "Qurulubsa, bu məzmun avtomatik olaraq standart mesaj yerinə icazəsiz istifadəçilərə göndəriləcək." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "Şəkil/ Video" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "Şəkillər" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Mesaj qutusu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "İndekslənmiş Kontent" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "Daxili" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "İzləyicidir" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "Bilik" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Son Yeniləyən" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Son Yenilənmə tarixi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Ən son Əməliyyatlar" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "Sahibləri olduqları sənədlərə Oxuma Qruplarını məhdudlaşdırın." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Bağlantı" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "Canlı" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Bağlama" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "Blok edilib" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Tərəfindən blok edilib" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "Qeyd daxil et..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "İstifadəçi adı" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "Layihə kimi işarələ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "Hamısını Yerinəyetirilmiş kimi İşarələ" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "Marketinq" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "Mesajın Çatdırılmasında xəta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Mesajlar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Mime- tip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "Müxtəlif" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modellər" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Aylar" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "Gələnlər Qutusuna Keç" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "İş sahəsinə Keç" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "Çoxseçimli Dəyərlər" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Mənim Sənədim" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "Mənim Seçilmişlərim" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Ad" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "Paylaşma bağlantısının adı" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "Yeni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Növbəti Fəaliyyətin Son Tarixi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Növbəti Fəaliyyət Xülasəsi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Yeni Fəaliyyət Növü" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Fayl deyil" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Əlavə edilməyib" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Qeyd" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Hərəkətlərin sayı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "Xətaların sayı" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Əməliyyat tələb edən mesajların sayı" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Çatdırılma xətası olan mesajların sayı" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo Loqosu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo Veb saytı " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "Bir qeyd limiti " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "Söhbəti Açın" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "Cavab verməsələr belə, gələn bütün mesajların əlavə ediləcəyi email zəncirinin (qeyd) istəyə bağlı ID-si. Quraşdırılarsa, bu, yeni qeydlərin yaradılmasını tamamilə dayandıracaq." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Digər" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "Yalnız Şəxsi Sənədlər" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Sahibi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "PDF/ Sənəd" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Əsas Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "Əsas Yol" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Əsas Qeyd Zəncirinin ID-si" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "Əsas İş sahəsi " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "Qoşma adı özündə saxlayan əsas model Qoşma ad istinadını özündə saxlayan model alias_model_id tərəfindən verilən model olmaya bilər (məsələn: layihə (parent_model) və tapşırıq (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Mail şlüzündən istifadə edərək sənəddəki mesajı göndərmək qaydası.\n" +"- hər kəs: hərkəs göndərə bilər\n" +"- tərəfdaşlar: yalnız təsdiqlənmiş tərəfdaşlar\n" +"- izləyicilər: yalnız müvafiq sənədin izləyiciləri və ya aşağıdakı kanalların üzvləri\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "Təqdimatlar" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "Layihə" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "Oxumaq üçün Giriş" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "Oxuyucu Qrupları" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Qeyd" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Qeyd Hissəciyinin ID-si" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Sil" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "Yer dəyişdir" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "Ilə yer dəyişdir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Sorğu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Fəaliyyəti Sorğu et" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Sənədi Sorğu Et" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Faylı sorğu et" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "Sorğu edildi" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Sorğu edilmiş Sənəd" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "Tələb olunan Etiketlər" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Res Modelin Adı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Resurs ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Resurs Modeli" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Resurs Adı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Məsul" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Məsul İstifadəçi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Bərpa edin" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS-in Çatdırılmasında xəta" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "Satışlar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Yadda Saxla" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "Fəaliyyət Planı" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Ardıcıllıq" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "Əlaqəni Təyin Edin" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "Sahibkar Təyin Edin" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "İşarələmələri Təyin Edin" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Parametrlər" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "Paylaşın" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "Keçidləri Paylaşın" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "Keçidi paylaşın" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "Keçidləri Paylaşın" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "Bu domeni paylaşın" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "Bu seçimi paylaşın" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "Paylaşma növü" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "Bu sənədi yaratmaq üçün istifadə olunanları paylaşın" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "Paylaşılan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "Paylaşılan Sənədlər" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "Paylaşılan İşarələmələr" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Növbəti fəaliyyət tarixi bu günə qədər olan bütün qeydləri göstərin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Ölçü" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "Ayırma" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Fəaliyyətlərə əsaslanan status\n" +"Gecikmiş: Gözlənilən tarixdən keçib\n" +"Bu gün: Fəaliyyət tarixi bu gündür\n" +"Planlaşdırılıb: Gələcək fəaliyyətlər." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "Əlavə iş sahələri" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Xülasə" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Etiket" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "Etiket Kateqoriyaları" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Etiket Adı" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "Etiket bu faset üçün onsuz da mövcuddur" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "Bu iş sahəsi üçün müəyyən olunmuş etiket kateqoriyaları" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Etiketlər" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "Şablonlar" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "Mətn" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "Bu etiket kateqoriyasında və ya etiketlərində gəzərkən göstərilən mətn" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "Bu alternativ adın uyğun gəldiyi model (Odoo Document Kind). Mövcud qeydə cavab verməyən hər hansı gələn email bu modelin yeni bir qeydinin yaradılmasına səbəb olacaq (məsələn, Layihə Tapşırığı)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr " ünvanından olan mailləri görmək istəyirsinizsə, email alternativininin (məs: işlər) adı" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "Bu alternativ adda emailləri qəbul etdikdən sonra tərtib olunan qeydlərin sahibi. Bu sahə təyin edilməyibsə, sistem göndərənin (Kimdən) ünvanına əsasən doğru sahibi tapmağa çalışacaq və ya həmin ünvan üçün sistem istifadəçisi tapılmadıqda Administrator hesabından istifadə edəcəkdir." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "Bu giriş tokeni artıq mövcuddur" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Bu əlavə artıq bir sənəddir" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "Bu əlavə yalnız seçilmiş istifadəçi qrupları üçün mövcud olacaq" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "Bu iş yeri yalnız seçilmiş şirkət üçün mövcud olacaq" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatür" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "Təsdiq Etmək Üçün" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Təsdiq Etmək Üçün" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Bugünkü Fəaliyyətlər" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "Çıxan izah" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tip" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Qeyddəki istisna fəaliyyət növü." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "Arxivdən çıxarın" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Kilidi açın" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "Yükləyin" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "E-poçt vasitəsi ilə yükləyin" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "İstifadəçi" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "ƏDV" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "Etibarlılıq Müddəti" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "Təsdiqləyin" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "Təsdiqləndi" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "videolar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Veb sayt Mesajları" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "Veb saytın kommunikasiya tarixçəsi" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Həftələr" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "İş dövriyyəsi Fəaliyyəti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "İş dövriyyəsi Qaydası" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "İş sahəsi " + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "İş sahələri " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "Girişi Yazın " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "Qrupları Yazın" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "Burada hərəkət üçün sorğu yazısı yazın" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "Kompüterinizdən bir fayl yükləyə və ya bir internet bağlantısını sənədinizə kopyalaya / yapışdıra bilərsiniz." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "Silin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "sənəd" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "Sənədlər" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "seçilmiş sənədlər" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "Yüklə" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "məs: Təklifin Müzakirəsi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "Məs. Maliyyə" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "Məs. Xərclərdə Çatışmazlıq" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "Məs. Status" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "Məs. Sənədi doğrulayın" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "ad" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "Bərpa edin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "Seçin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "tərəfindən paylaşılan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "" diff --git a/addons_extensions/documents/i18n/bg.po b/addons_extensions/documents/i18n/bg.po new file mode 100644 index 000000000..fb0f98bb7 --- /dev/null +++ b/addons_extensions/documents/i18n/bg.po @@ -0,0 +1,3695 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Petko Karamotchev, 2024 +# Александра Николова , 2024 +# Anton Vassilev, 2024 +# Rumena Georgieva , 2024 +# Kaloyan Naumov , 2024 +# Ivan Ivanov, 2024 +# KeyVillage, 2024 +# Rosen Vladimirov , 2024 +# Albena Mincheva , 2024 +# Martin Trigaux, 2024 +# aleksandar ivanov, 2024 +# Ивайло Малинов , 2024 +# Igor Sheludko , 2024 +# Maria Boyadjieva , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Maria Boyadjieva , 2024\n" +"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (копие)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Речник на Python, който ще бъде оценен, за да предостави стойности по " +"подразбиране при създаването на нови записи за този псевдоним." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Достъп" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Грешка при достъпа" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Токен за достъп" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Действие" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Необходимо действие" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Активно" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Дейности" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Дейност" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr " Декорация за изключение на дейност" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Състояние на дейност" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Вид дейност" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Икона за вид дейност" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Тип дейности" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Добави" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Администратор" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Псевдоним" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Сигурност на контакт за псевдоним" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Домейн за псевдоними" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Псевдоним на име на домейн" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Псевдоним имейл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Псевдоним име" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Псевдоним статус" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Статус на псевдонима, оценен при последното получено съобщение." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Преименуван модел" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Всичко" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Прикачен файл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Брой прикачени файлове" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Име на прикачен файл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Фактура за покупка" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Отказ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Контролна сума/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Второстепенен" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Затвори" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Цвят" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Фирма" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Конфигурационни настройки" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Конфигурация" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Конфигурирайте" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Контакт" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Договори" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Създаден от" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Дата на създаване" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Персонализирано отвхвърлено съобщение" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Дни" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Стойности по подразбиране" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Изтрий" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Амортизиран" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Данни" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Отхвърлете" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Документ" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Документи" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Извършен" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Изтеглете от системата" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Чернова " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Дублирайте" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Редактирай" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Редактор" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Имейл псевдоним" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Имейли-псевдоними" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Имейл копие" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Имейл домейн напр. 'example.com' в 'odoo@example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Грешка" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Разход" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Валидност" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Износ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Любим на" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Файл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Размер на файл" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Последователи" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Последователи (партньори)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr " Икона, примерно fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Основен" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Групиране по" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "ЧР" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "има съобщение" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "История" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Начало" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID на родителския запис, притежаващ псевдонима (например: проект, притежаващ" +" псевдонима за създаване на задача)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Икона" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Икона за обозначаване на дейност по изключение." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Ако е отметнато, новите съобщения ще изискват внимание." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Ако е отметнато, някои съобщения имат грешка при доставката." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Ако е зададено, това съдържание ще се изпраща автоматично на неупълномощени " +"потребители вместо съобщението по подразбиране." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Изображения" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Входяща кутия" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Индексирано съдържание" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Вътрешни потребители" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "е последовател" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Последно актуализирано от" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Последно актуализирано на" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Линк" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Откриване на входящи съобщения на база локалната част на имейла" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Заключете" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Заключен" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Регистрирайте бележка" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Вход" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Изход" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Съобщение" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Грешка при доставяне на съобщението" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Syob]eniq" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Вид Mime" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Модел" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Модели" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Месеци" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Моите дейности" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Краен срок за моята дейност" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Име" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Нов" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Следващото събитие от календара на дейностите" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Краен срок на следващо действие" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Обобщение на следваща дейност" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Вид на следващо действие" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Никакъв" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Забележка" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Брой действия" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Брой грешки" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Брой съобщения изискващи действие" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Брой съобщения с грешка при доставка" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Лого на системата" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Предишен" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Незадължителен идентификационен номер на нишка (запис), към която ще бъдат " +"прикрепени всички входящи съобщения, дори ако не са отговорили на него. Ако " +"е настроено, това ще забрани напълно създаването на нови записи." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Друг" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Собственик" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Родителски модел " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Основен" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID на нишката на родителския запис" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Родителски модел, който притежава псевдонима. Моделът, който държи " +"референцията на псевдонима, не е непременно моделът, зададен от " +"alias_model_id (пример: проект (parent_model) и задача (model))." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Партньор" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Политика за публикуване на съобщение в документа с помощта на mailgateway.\n" +"- всеки: всеки може да публикува\n" +"- партньори: само автентифицирани партньори\n" +"- последователи: само последователи на свързания документ или членове на следващите канали\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Присъства" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Презентации" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Проект" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Оценявания" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Запис" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID на запис на нишката" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Заявка" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ИН на ресурс" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Модел на ресурс" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Име на ресурс" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Отговорен" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Отговорен потребител" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Възстанови" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Длъжност" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS грешка при доставка" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Продажби" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Запазете" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Изпрати" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Последователност" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Настройки" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Споделете" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Пряк път" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Размер:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Документ-източник" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Разделете" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Отбелязано със звездичка" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Статус въз основа на дейности\n" +"Просрочени: Срокът вече е изтекъл\n" +"Днес: Датата на дейността е днес\n" +"Планирано: Бъдещи дейности." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Структура" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Обобщение" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Маркер" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Име на маркер" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Маркери" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Текст" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +" Моделът (Odoo Document Kind), към който съответства този псевдоним. Всеки " +"входящ имейл, който не отговаря на съществуващ запис, ще доведе до " +"създаването на нов запис на този модел (например задача за проекта)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Името на имейла, напр. \"работни места\", ако искате да уловите имейли за " +"" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Този месец" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Тази седмица" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Миниатюра" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "За потвърждаване" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "За потвърждение" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Днес" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Изскачащо съобщение" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Вид" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Вид на записаната дейност по изключение." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL адрес" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Отключете" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Неназован" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Качване" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Потребител" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "ДДС" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Валидиране" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Видеа" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Съобщения в уебсайт" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "История на комуникацията на уебсайт" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Седмици" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Можете или да качите файл от компютъра си, или да копирате/поставите " +"интернет линк във файла си." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "псевдоним" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "документ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "напр. обсъдете предложение" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "напр. mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/bs.po b/addons_extensions/documents/i18n/bs.po new file mode 100644 index 000000000..699621567 --- /dev/null +++ b/addons_extensions/documents/i18n/bs.po @@ -0,0 +1,2871 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Bole , 2018 +# Martin Trigaux, 2018 +# Boško Stojaković , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2018-08-24 11:37+0000\n" +"Last-Translator: Boško Stojaković , 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "Python dictionary koji će se provjeravati za zadane postave kada se kreira novi zapis za ovaj alias." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Pristupne grupe" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Pristupni token" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Akcija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Potrebna akcija" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Akcije" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "Aktivnost" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "Tip aktivnosti" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Dodaj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "Sigurnosni nadimak kontakta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Naziv nadimka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "Alias domena" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "Zamjenski model" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "Arhiviraj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "Arhivirano" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Prikačeno na" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "Broj zakački" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "Otkaži" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Kategorija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Kompanija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Uslovi" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfiguracija" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "Sadrži" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Kreiraj" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Kreirao" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dani" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Zadane vrijednosti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Obriši" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Opis" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumenti" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Domen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Preuzimanje" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "Istekao" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Datoteka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Pratioci" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Pratioci (Partneri)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Buduće aktivnosti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Ako je zakačeno, nove poruke će zahtjevati vašu pažnju" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Prijemno sanduče" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "Je pratilac" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Aktivnosti u kašnjenju" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Zaključaj" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "Zabilježi zabilješku" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Prijava" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Odjava" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Poruke" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Mjeseci" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Moje aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Naziv:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Zabilješka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Broj akcija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Broj poruka koje zahtjevaju neku akciju" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "Opcionalni ID zapisa na kojeg će biti povezane sve dolazne poruke, čak i ako oni nisu odgovorili na njega. Ako je postavljeno, to će onemogućiti stvaranje novih zapisa u potpunosti." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Vlasnik" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Roditeljski model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Roditeljski zapis niti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID niti zapisa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Ukloni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Zahtjev" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Odgovoran" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Oporavi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Sekvenca" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Postavke" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "Podijeli" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Prikaži sve zapise koji imaju datum sljedeće akcije prije danas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Veličina" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Status" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Sažetak" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Oznaka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Oznake" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "Vlasnik zapisa kreiranih nakon primitka e-mailova na taj alias. Ako ovo polje nije postavljeno sustav će pokušati pronaći pravog vlasnika na temelju adrese pošiljatelja (od), ili će koristiti administratorski račun ako ne pronađe sistemskog korisnika za tu adresu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Današnje aktivnosti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tip" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Korisnik" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "Važi do" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Poruke sa website-a" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Sedmice" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "npr.: Raspravi prijedlog" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "" diff --git a/addons_extensions/documents/i18n/ca.po b/addons_extensions/documents/i18n/ca.po new file mode 100644 index 000000000..00e9539a3 --- /dev/null +++ b/addons_extensions/documents/i18n/ca.po @@ -0,0 +1,3743 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Harcogourmet, 2024 +# Susanna Pujol, 2024 +# Marc Tormo i Bochaca , 2024 +# Cristian Cruz, 2024 +# Eric Antones , 2024 +# M Palau , 2024 +# Lluís Dalmau , 2024 +# eriiikgt, 2024 +# Albert Parera, 2024 +# Óscar Fonseca , 2024 +# jabiri7, 2024 +# Carles Antoli , 2024 +# Ivan Espinola, 2024 +# Santiago Payà , 2024 +# Guspy12, 2024 +# Jonatan Gk, 2024 +# RGB Consulting , 2024 +# Iván Infantes Castarnado, 2024 +# Quim - eccit , 2024 +# Arnau Ros, 2024 +# marcescu, 2024 +# Josep Anton Belchi, 2024 +# Martin Trigaux, 2024 +# Manel Fernandez Ramirez , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Manel Fernandez Ramirez , 2024\n" +"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (còpia)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s Arxius" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s fitxer(s) no moguts perquè estan bloquejats per un altre usuari" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Els fitxers explorats apareixeran automàticament a l'espai de treball. " +"Després, processeu els vostres documents en gran manera amb l'eina de " +"divisió: llançar accions definides per l'usuari, sol·licitar una signatura, " +"convertir a factures de venedor amb IA, etc." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" +"Consell: Convertir-se en una empresa sense paper" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Desselecciona aquesta pàginamentre pensem processar primer totes les " +"factures." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Seleccioneu aquesta pàgina per a continuar." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Impulsat per" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Carregar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Documents" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Registre
    Relacionat
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Document sol·licitat" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Petició" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Document sol·licitat" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Diccionari Python que s'avaluarà per a proporcionar valors per defecte quan " +"es creïn nous registres per aquest pseudònim." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Accés" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Error d'accés" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Token d'accés" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Acció" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Acció necessària" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Actiu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Activitats" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Activitat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Activitat d'excepció de decoració" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Estat de l'activitat" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tipus d'activitat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Icona de tipus d'activitat" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Tipus d'activitats" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Tipus d'activitat" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Afegir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Afegir fitxer" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Afegir l'URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Afegir un fitxer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Afegeix persones o adreces de correu electrònic..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrador" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Anuncis" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Pseudònim" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Alias del contacte de seguretat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Àlies de domini" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Nom del domini d'àlies" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Pseudònim de correu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Pseudònim" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Model amb pseudònim" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Tots" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Una manera fàcil de processar els correus entrants és configurar l'escàner " +"per enviar els PDF" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Una manera fàcil de processar els correus entrants és configurar l'escàner " +"per enviar PDF al vostre correu electrònic de l'espai de treball. Els " +"fitxers explorats apareixeran automàticament a l'espai de treball. Després, " +"processeu els vostres documents en gran manera amb l'eina de divisió: " +"llançar accions definides per l'usuari, sol·licitar una signatura, convertir" +" a factures de venedor amb IA, etc." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "S'ha produït un error en carregar." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Qualsevol persona amb l'enllaç" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Arxivar fitxer(s) original(s)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Com aquest PDF conté diversos documents, ho dividirem i processar-ho en " +"bloc." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Adjunt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Nombre d'adjunts" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Descripció de l'annex" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Nom del document adjunt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Tipus d'adjunt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Factura " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Fulletons" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" +"En definir una carpeta, les activitats de pujada generaran un document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Cancel·la" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Suma verificació/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Fills" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Trieu un registre per enllaçar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Fes clic en una targeta per seleccionar el document." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Feu clic en una miniatura aprevisualizar el document." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Feu clic a separador de pàgina: No volem dividir aquestes dues " +"pàgines perquè pertanyen al mateix document." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Cliqueu a la creu per a sortir de la previsualització." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Tancar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Color" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Empresa" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Paràmetres de configuració" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Configuració" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Configura" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Contacte" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Contractes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Botons del panel de control" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Copiar enllaç" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Crea una activitat nova" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Creat per" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Data de creació" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Missatge personalitzat de rebot" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dies" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Valors per defecte" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Eliminar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Obsolet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Detalls" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Descartar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Document" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Recompte de documents" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Nom del document" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Sol·licitud de document" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Sol·licitud de document {{ object.name != False and ': '+ object.name or '' " +"}}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Document: Sol·licitud de document" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Documents" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Documents enllaç a registre" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Mescla de creació de documents" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Fet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Fet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Descarregar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Descarregar tots els arxius" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Esborrany" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Deixi anar els arxius aquí per a carregar-los" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Data de venciment en" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipus de venciment" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Duplicar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Modificar" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Editor " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Àlies de correu electrònic" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Pseudònims de correus" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "cc de correu electrònic" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Domini de correu electrònic p.ex. 'example.com' a 'odoo@example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Error" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Despesa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Caducitat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Exportar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Preferit de" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Fitxer" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Contingut del fitxer (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Contingut del fitxer (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Mida del fitxer" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Model d'ajuda de transmissió de fitxers per a controladors" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Fitxers" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Centralització dels fitxers" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Financer" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Fiscal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Carpeta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Seguidors" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidors (Partners)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Icona Font Awesome p.e. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "General" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Agrupar per" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Té un missatge" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Historial" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Inici" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"Id del registre pare que te el pseudònim.(exemple: el projecte que conté el " +"pseudònim per la creació de tasques)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Icona" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Icona que indica una activitat d'excepció." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" +"Si està marcat, hi ha nous missatges que requereixen la vostra atenció." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Si està marcat, alguns missatges tenen un error d'entrega." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Si està seleccionat, aquest contingut s' enviarà automàticament als usuaris " +"no autoritzats enlloc del missatge per omissió." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Imatges" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Bústia d'entrada" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Contingut indexat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Usuaris interns " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "És un annex editable" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Es Favorit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "És un seguidor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Última actualització per" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Última actualització el" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Legal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Processem els documents a la vostra bústia d'entrada.
    Consell: " +"Utilitza les etiquetes per filtrar documents i estructurar el vostre " +"procés." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" +"Procedim a aquestes factures: enviar a l'espai de treball de finances." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Processem aquest document, que ve del nostre escàner." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Etiquetarem aquest correu com a legal
    Consells: les accions es poden" +" adaptar al vostre procés, d'acord amb l'espai de treball." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Enllaç" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "URL de l'enllaç" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Enllaç copiat al porta-retalls!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Bloqueja" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Bloquejat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Bloquejat per" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Registrar una nota" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Iniciar sessió" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Tancar sessió" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Missatge" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Error d'entrega del missatge" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Missatges" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Tipus MIME" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Models" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Mesos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Les meves activitats" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Venciment de l'activitat" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Els meus documents" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nom" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Nou" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Nou Arxiu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Grup Nou" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Proper esdeveniment del calendari d'activitats" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Data límit de la següent activitat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Resum de la següent activitat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Tipus de la següent activitat" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "No s'ha trobat cap tipus d'activitat. Creem-ne un!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "No s'ha seleccionat cap document" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "No hi ha enllaços compartits" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Cap" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "No és un Arxiu" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "No adjuntat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Nota" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Notifica" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Nombre d'accions" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Nombre d'errors" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Nombre de missatges que requereixen una acció" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Nombre de missatges amb error d'entrega" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Logo Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Lloc web d'Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Més antiga" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Id opcional d'un fil (registre) al que s'adjuntaran tots els missatges " +"entrants, inclús si no en son respostes. Si s'estableix, es desactivarà " +"completament la creació de nous registres." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "O enviar correus electrònics a" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Altres" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Propietari" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Propietari: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Carpeta pare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Model pare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Ruta principal" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Id del registre pare" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"El model pare conte el pseudònim. El model que conte la referència del " +"pseudònim no és necessàriament el model que es dóna a través del camp " +"alias_model_id (exemple: projecto (parent_model) i tasca (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Transferència parcial" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Política per enviar un missatge en el document utilitzant la passarel·la del correu.\n" +"-Tots: Tothom pot publicar\n" +"-Empreses: Només les empreses autenticades\n" +"-Seguidors: Només els seguidors del document relacionat o els membres dels canals següents\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Present" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Presentacions" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Projecte" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Valoracions" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Recent" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Registre " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Id del registre del fil" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Pàgines restants" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Elimina el membre" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Canvia el nom" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Sol·licitud" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Sol·licitud d'activitat" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Sol·licitud a" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Sol·licitar un document" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Solicitar un fitxer" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Document sol·licitat" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Documents sol·licitats" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Nom del model Res" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID del recurs " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Model del Recurs" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Nom del Recurs" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Responsable" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Usuari responsable" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Restaurar" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Rol" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Error de lliurament SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Vendes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Desar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Selecciona tot" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Enviar" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Envia aquesta carta al departament legal, assignant les etiquetes correctes." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Enviat a un company quan se li demana un document" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Seqüència" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Configuració" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Compartir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Abreviació" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Mida:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Document d'origen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Divideix" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Divideix el PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Destacat" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Estat basat en activitats\n" +"Vençuda: La data límit ja ha passat\n" +"Avui: La data de l'activitat és avui\n" +"Planificat: Activitats futures." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Queda't aquí" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Estructura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Resum" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Etiqueta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Nom de l'etiqueta" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Etiquetes" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Text" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"El model (Tipus de document d'Odoo) al que correspon aquest pseudònim. " +"Qualsevol correu electrònic entrant que no sigui resposta a un registre " +"existent, causarà la creació d'un nou registre d'aquest model (per exemple, " +"una tasca de projecte)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"El nom del pseudònim de correu electrònic, per exemple, \"jobs\", si voleu " +"obtenir els correus mitjançant " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Aquest mes" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Aquesta setmana" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Aquest annex ja és un document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Aquestes representen les diferents categories de coses que heu de fer (p. " +"ex. «Call» o «Envia un correu electrònic»)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Estat de les miniatures" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Consell: configurar l'escàner per enviar tots els documents a aquesta " +"adreça." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Consell: Convertir-se en una empresa sense paper" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Per a validar" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Per validar" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Avui" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Commuta com a preferit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Informació sobre eines" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Paperera" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Veritat si podem modificar l'adjunt de l'enllaç." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tipus" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Tipus d'activitat d'excepció registrada." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "L'URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Desbloquejar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Sense nom" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Pujar" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Puja un fitxer o arrossega aquí." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Sol·licitud de càrrega d'arxius" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Usuari" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Permís d'usuari" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "CIF/NIF" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Validat" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Vídeos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Visor" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Vols convertir-te en empresa sense paper? Descobrim documents d'Odoo." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Missatges del lloc web" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Historial de comunicacions del lloc web" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Setmanes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Tu" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Pots pujar tant un fitxer del teu ordinador com copiar/enganxar un enllaç " +"d'internet al teu fitxer." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "documents" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "p. ex. Discussió d'una proposta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "p. ex. Finances" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "p. ex. Falta la despesa" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "p. ex. Per validar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "p. ex. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "carpeta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "selecciona" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "compartit per" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "sense nom" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/cs.po b/addons_extensions/documents/i18n/cs.po new file mode 100644 index 000000000..99387b346 --- /dev/null +++ b/addons_extensions/documents/i18n/cs.po @@ -0,0 +1,3717 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Aleš Fiala , 2024 +# Wil Odoo, 2024 +# Tereza Mokrá, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Tereza Mokrá, 2024\n" +"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (kopie)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s Souborů" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s soubor(y) nebyly přesunuty, protože jsou uzamčeny jiným uživatelem" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Naskenované soubory se ve vašem pracovním prostoru objeví automaticky. " +"Poté zpracovávejte své dokumenty hromadně pomocí nástroje pro rozdělení: " +"spusťte uživatelem definované akce, vyžádejte si podpis, převeďte na faktury" +" dodavatele pomocí AI atd." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Tip: Staňte se bezpapírovou společností" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Zrušit výběr této stránky, protože plánujeme nejprve zpracovat " +"všechny přijaté faktury." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Běží na" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Nahrát" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Dokumenty" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Související
    záznam
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Požadovaný dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Žádost" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Požadovaný Dokument" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Slovník Pythonu, který bude vyhodnocen tak, aby poskytoval výchozí hodnoty " +"při vytváření nových záznamů pro tento alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Přístup" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Chyba přístupu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Přístupový token" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Akce" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Vyžadována akce" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Aktivní" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Aktivity" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Aktivita" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Typ výjimečné aktivity" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Plány aktivit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Stav aktivity" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Typ aktivity" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ikona typu aktivity" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Typy aktivit" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Typ aktivity" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Přidat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Přidat soubor" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Přidat URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Přidat nový soubor" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Přidat lidi nebo e-mailové adresy..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrátor" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Reklamy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Zabezpečení aliasu kontaktu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Alias domény" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Alias domény" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "E-mailový alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Název aliasu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Stav aliasu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Stav aliasu při poslední doručené zprávě." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Model aliasu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Vše" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Snadný způsob, jak zpracovat příchozí e-maily, je nakonfigurovat skener tak," +" aby posílal soubory PDF" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Snadný způsob zpracování příchozích e-mailů je konfigurace skeneru tak, aby " +"odesílal soubory PDF na váš e-mail pracovního prostoru. Naskenované soubory " +"se ve vašem pracovním prostoru objeví automaticky. Poté zpracovejte své " +"dokumenty hromadně pomocí nástroje pro rozdělení: spusťte uživatelem " +"definované akce, vyžádejte si podpis, převeďte na faktury dodavatele pomocí " +"AI atd." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Během nahrávání došlo k chybě." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Kdokoli s odkazem" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Archivovat původní soubor(y)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Opravdu chcete tuto stránku smazat?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Jelikož tento PDF obsahuje více dokumentů, rozdělíme je a zpracováváme " +"hromadně." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Příloha" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Počet příloh" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Popis přílohy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Název přílohy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Typ přílohy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Přijata faktura" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Brožury" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "Definováním složky budou nahrávací aktivity generovat dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Zrušit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Kontrolní součet / SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Potomci" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Vyberte záznam, který chcete propojit" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Kliknutím na kartu vyberte dokument." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Kliknutím na miniaturu zobrazíte náhled dokumentu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Klikněte na oddělovač stránek: nechceme tyto dvě stránky rozdělit, " +"protože patří do stejného dokumentu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Zavřít" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Barva" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Společnost" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurační nastavení" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfigurace" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Konfigurovat" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Smlouvy" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Tlačítka na ovládacím panelu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Kopírovat odkaz" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Vytvořit aktivitu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Vytvořit novou aktivitu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Vytvořeno uživatelem" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Vytvořeno dne" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Datum vytvoření" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Vlastní odrazená zpráva" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dny" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Výchozí hodnoty" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Smazat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Deaktivovaný" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Podrobnosti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Zrušit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Zobrazovací název" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Počet dokumentů" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Název dokumentu" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Žádost o dokument" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Žádost o dokument {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Dokument: Žádost o dokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumenty" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Napojení dokumentů na záznam" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Mixin vytváření dokumentů" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Hotovo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Hotovo!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Stáhnout" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Stáhnout všechny soubory" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Návrh" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Sem vhodit soubor k nahrání" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Datum vypršení" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Typ termínu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Duplikovat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Upravit" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Editor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Emailový alias" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Emailové aliasy" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Kopie e-mailu" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "E-mailová doména, např. 'example.com' v 'odoo@example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Chyba" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Výdaj" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Vypršení" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Export" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Oblíbené z" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Soubor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Obsah souboru (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Obsah souboru (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Velikost souboru" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Model podpory streamování souborů pro kontrolery" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Soubory" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Certifikace souborů" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Finanční" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Fiskální" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "složka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Odběratelé" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Odběratelé (partneři)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Ikona v rámci awesome font, např. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Obecný" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Seskupit podle" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Má zprávu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Historie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Domovská stránka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID rodičovského záznamu obsahující alias (například: Projekt obsahující " +"alias pro vytváření úkolů)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ikona" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ikona, která označuje výjimečnou aktivitu." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Pokud zaškrtnuto, nové zprávy vyžadují vaši pozornost." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Pokud zaškrtnuto, některé zprávy mají chybu při doručení." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Pokud je nastaveno, bude tento obsah místo výchozí zprávy automaticky " +"odeslán neoprávněným uživatelům." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Obrázky" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Příchozí zprávy" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indexovaný obsah" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Interní uživatelé" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Je upravitelná příloha" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Je oblíbený" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Je odběratel" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Naposledy upraveno uživatelem" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Naposledy upraveno dne" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Právní" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Pojďme zpracovat dokumenty ve vaší doručené poště.
    Tip: Použijte " +"značky k filtrování dokumentů a strukturování procesu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Zpracujme tyto faktury: odešlete do pracovního prostoru Finance." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Pojďme zpracovat tento dokument z našeho skeneru." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Označme tento e-mail jako legální
    Tipy: akce lze přizpůsobit vašemu " +"procesu v závislosti na pracovním prostoru." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Odkaz" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "URL odkazu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Odkaz zkopírován do schránky!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Detekce příchozích na základě místní části" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Zamknout" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Uzamčeno" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Zamčeno od" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Zapsat poznámku..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Přihlášení" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Odhlásit se" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Zpráva" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Chyba při doručování zprávy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Zprávy" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Mime Type" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modely" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "měsíců" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Mé aktivity" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Termín mé aktivity" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Moje dokumenty" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Název" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Nové" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Nový soubor" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Nová skupina" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Další aktivita z kalendáře" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Termín další aktivity" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Popis další aktivity" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Typ další aktivity" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Nebyly nalezeny žádné typy aktivit. Vytvořme si jeden!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Nebyl vybrán žádný dokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Žádné sdílené odkazy" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Žádné" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Není soubor" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Není přiloženo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Poznámka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Oznámit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Počet akcí" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Počet chyb" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Počet zpráv vyžadujících akci" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Počet zpráv s chybou při doručení" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo Logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo webstránka" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Starší" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Volitelné ID vlákna (záznamu), ke kterému budou připojeny všechny příchozí " +"zprávy, i když na něj neodpověděly. Je-li nastaveno, zakáže se úplné " +"vytvoření nových záznamů." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Nebo pošlete e-maily na" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Ostatní" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Majitel" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Vlastník: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Nadřazená složka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Nadřazený model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Nadřazená cesta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID vlákna nadřazeného záznamu" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Nadřazený model s aliasem. Model obsahující odkaz na alias nemusí být nutně " +"modelem daným od alias_model_id (příklad: project (parent_model) a task " +"(model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Částečný přesun" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Zásady zveřejňování zpráv v dokumentu pomocí poštovní brány.\n" +"- každý: každý může psát\n" +"- partneři: pouze ověření partneři\n" +"- sledující: pouze sledující související dokument nebo členové následujících kanálů\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Přítomný" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Prezentace" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Projekty" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Hodnocení" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Nedávné" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Záznam" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID vlákna záznamu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Zbývající strany" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Odebrat člena" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Přejmenovat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Požadavek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Žádost o aktivitu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Žádost o" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Vyžádat dokument" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Vyžádání souboru" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Požadovaný dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Požadované dokumenty" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Název modelu res" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID zdroje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Model zdroje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Název zdroje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Odpovědný" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Zodpovědný uživatel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Obnovit" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Role" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Chyba doručení SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Prodej" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Uložit" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Vybrat vše" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Odchozí" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "Zašlete tento dopis právnímu oddělení přidělením správných tagu." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Odesláno partnerovi, když od něj požadujete dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Sekvence" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Nastavit v aktivitách upomínky, které upozorní uživatele, kteří nenahráli " +"požadovaný dokument." + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Nastavení" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Sdílet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Zkratka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Velikost:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Zdrojový dokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Rozdělit" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Rozdělit PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Označeno hvězdičkou" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Stav na základě aktivit\n" +"Po splatnosti: Datum již uplynul\n" +"Dnes: Datum aktivity je dnes\n" +"Plánováno: Budoucí aktivity." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Vrátit se zpět k úpravám" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Struktura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Shrnutí" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Štítek" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Název štítku" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Štítky" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Text" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Model (Odoo Document Kind), ke kterému odpovídá tento alias. Jakýkoli " +"příchozí e-mail, který neodpovídá stávajícímu záznamu, způsobí vytvoření " +"nového záznamu tohoto modelu (například projektové úlohy)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Název aliasu e-mailu, např. 'jobs', pokud chcete zachytit e-maily pro " +"" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Tento měsíc" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Tento týden" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Tato příloha je také dokumentem" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Ty představují různé kategorie věcí, které musíte udělat (např. „Zavolat“ " +"nebo „Poslat e-mail“)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Náhled" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Stav miniatury" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Tip: nastavte skener tak, aby na tuto adresu odesílal všechny dokumenty." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Tip: staňte se společností bez papírů" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Ke schválení" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "K potvrzení" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Dnes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Přepnout oblíbené" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Kontextová nápověda" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Koš" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Pravda, pokud můžeme upravit přílohu odkazu." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Typ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Typ výjimečné aktivity na záznamu." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Odemknout" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Nepojmenovaný" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Nahrát" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Nahrajte soubor nebo jej sem přetáhněte." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Nahrát soubor požadavku" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Uživatel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Povolení uživatelů" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "DIČ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Potvrzeno" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Videa" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Prohlížeč" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Chcete se stát bezpapírovou společností? Pojďme objevit Odoo " +"dokumenty." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Webové zprávy" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Webová historie komunikace" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Týdny" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Vy" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Můžete buď nahrát soubor z počítače, nebo zkopírovat / vložit internetový " +"odkaz do souboru." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "dokumenty" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "např. Prodiskutovat návrh" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "např. Finance" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "např. chybějící výdaje" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "např. Ověřit" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "např. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "složka" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "vybrat" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "Sdíleno od" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "bez jména" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/da.po b/addons_extensions/documents/i18n/da.po new file mode 100644 index 000000000..be690c526 --- /dev/null +++ b/addons_extensions/documents/i18n/da.po @@ -0,0 +1,2884 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Sanne Kristensen , 2022 +# Ejner Sønniksen , 2022 +# Pernille Kristensen , 2022 +# Mads Søndergaard, 2022 +# Mads Søndergaard, 2022 +# lhmflexerp , 2022 +# Joe Hansen , 2022 +# Martin Trigaux, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2022-09-22 05:46+0000\n" +"Last-Translator: Martin Trigaux, 2022\n" +"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "%s Dokumenter" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "%s Dokumenter (%s låst)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s fil(er) ikke flyttet fordi de var låst fra en anden bruger" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr ", udløbet den" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "Byte" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "Fravælg denne side eftersom vi planlægger at behandle alle regninger først." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "Gb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "Kb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "Mb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Powered by" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr " Download alle" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr " Download" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr " Gå til URL" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "En Python-ordbog, der vil blive evalueret for at angive standardværdier, når du opretter nye poster til dette alias." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "En række betingelser og handlinger der vil være tilgængelige for alle vedhæftninger, som matcher betingelserne" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "Et arbejdsområde vil nedarve tags tilhørende arbejdsområdet hvorfra det har ophav" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Adgang" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Adgangsfejl" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Adgangsgrupper" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "Adgangsrettigheder" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Adgangstoken" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Handling" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "Handling Knap Navn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "Handling antal" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "Navn på handling" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Handling påkrævet" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Handlinger" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "Aktiv" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "Aktiviteter" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "Aktivitet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Aktivitet undtagelse markering" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "Aktivitetsnote" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Aktivitetstilstand" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Aktivitetstype" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Aktivitets Type Ikon" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "Aktivitetstype" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Tilføj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Tilføj Fil" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Tilføj url" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "Tilføj et Link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Tilføj ny fil" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrator" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "Reklamer" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "Alias kontakt sikkerhed" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Alias navn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "Alias domæne" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "Aliased model" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "All filer uploadet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "Tillader at" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "Giver dig mulighed for at håndtere dine dokumenter." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "En nem måde at behandle indgående mails på, er at konfigurere din scanner til at sende PDF'er til dit arbejdsområdes email. Scannede filer vil vises automatisk i dit arbejdsområde. Behandl derefter dine dokumenter i partier med delings værktøjet: kør brugerdefinerede handlinger, anmod om en underskrift, konverter til leverandørfaktura med kunstig intelligens, osv." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "Arkivér" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Arkivér originale fil(er)" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "Arkiveret" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "Lad os dele denne PDF og behandle den i partier, eftersom den indeholder flere dokumenter." + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "Spørg efter Bekræftelse" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "Aktiver" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Vedhæftet til" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Vedhæftning" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "Antal vedhæftninger" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Vedhæftning beskrivelse" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Navn på vedhæftede fil " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Vedhæftning type" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "Tilgængelige regler" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "Faktura" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "Mærke 1" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "Mærke 2" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "Brochurer" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "Ved at definere en mappe, vil upload aktiviteter generere et dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "Kan oploade" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "Annullér" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "Kategoriser, del, og følg alle dine interne dokumenter." + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Kategori" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Klik på et kort for at vælge dokumentet." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Klik på miniaturebilledet for at forhåndsvise dokumentet." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "Klik på side deleren: Vi vil ikke dele disse to sider, eftersom de tilhører samme dokument." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Luk" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Virksomhed" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "Betingelsestype" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Betingelser" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfiguration" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "Indeholder" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "Kontrakter" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Kontrolpanel knapper" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Opret" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "Opret deling" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "Opret en ny aktivitet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Oprettet af" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Oprettelsesdato" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "Kriterium" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Tilpasset Ikke modtaget Besked" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dage" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Standardværdier" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "Standardværdier for uploadede dokumenter" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Slet" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "Foræld" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "Forældet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Beskrivelse" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Kassér" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Dokument antal" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Navn på Dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "Dokumentejer" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Dokumentanmodning" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "Dokument Anmodning: %s Uploaded af: %s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "Dokument workflow tag handling" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "Dokumentliste" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumenter" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "Dokument deling" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "Dokumenter Arbejdsområde" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Dokument oprettelse mixin" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "Indeholder ikke" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Domæne" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Download" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "Hent alle filer" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "Download og upload" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Træk filer hertil for at uploade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "Forfaldsdato om" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "Forfaldstype" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Rediger" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "E-mail alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Email cc" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Fejl" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "Ekskluderede tags" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Omkostning" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "Udløbet" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "Facet eksistere allerede i denne mappe" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favorit hos" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Fil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Fil Indhold (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Fil Indhold (rå)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Filstørrelse" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Filer Centralisering" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "Finans" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "Financiel" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "Finans" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "Finansår" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "Mappe" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Følgere" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Følgere (partnere)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Skrifttype awesome icon f.eks. fa-opgaver" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Fremtidige aktiviteter" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "Sortér efter" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "Grupper der kan se arbejdsområdet og læse dets dokumenter uden opret/rediger rettigheder." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "Grupper der kan se arbejdsområdet og læse/oprette/redigere dets dokumenter." + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "Har besked" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Historik" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "ID for overordnet record indeholdende aliaset (eksempel: projekt, der indeholder opgaveoprettelses aliaset)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ikon" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ikon for uventet aktivitet." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Hvis afkrydset, kræver nye beskeder din opmærksomhed " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Hvis afkrydset har nogle beskeder en leveringsfejl" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "Hvis angivet vil dette indhold automatisk blive sendt ud til uautoriserede brugere, i stedet for standard beskeden." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "Billede/Video" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "Billeder" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Indbakke" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indekseret indhold" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "Intern" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Er Favorit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "Er følger" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "Viden" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Overskredet aktiviteter" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "Juridisk" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "Lad os behandle dokumenter i din indbakke.
    Råd: Brug tags til at filtrere dokumenter samt strukturere din behandling." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Lad os behandle disse regninger: Send til Finans arbejdsområde." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Lad os behandle dette dokument, der kommer fra vores scanner." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "Begræns læse grupper til dokumenter hvor de er ejer." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Link" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "Live" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Lås" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "Låst" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Låst af" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "Log et notat..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Log ind" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Log ud" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "Markér som kladde" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "Markér alle som fuldførte" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "Markedsføring" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "Besked ved leveringsfejl" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Beskeder" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Mime Type" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "Diverse" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modeller" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Måneder" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "Flyt til indbakke" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "Flyt til arbejdsområde" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "Flere værdier" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Mine Aktiviteter Deadline" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Mine dokumenter" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "Mine favoritter" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Navn" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "Navn på linket til deling" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "Ny" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Ny Fil" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Ny Gruppe" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Næste Aktivitet Kalender Arrangement" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Deadline for næste aktivitet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Oversigt over næste aktivitet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Næste aktivitetstype" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Intet dokument er valgt" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "Ingen grænse" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "Ingen delte links" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Ikke en fil" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Ikke vedhæftet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Notat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Antal handlinger" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "Antal fejl" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Antal meddelser der kræver handling" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Antal beskeder med leveringsfejl" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo website" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "Et datasæt grænse" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "Åben chatter" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "Valgfri ID for en tråd (record), som alle indgående meddelelser vil blive vedhæftet, selvom de ikke svarede på det. Hvis opsat, vil dette fuldstændigt deaktivere oprettelsen af nye poster." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Andet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "Kun egne dokumenter" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Ejer" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "PDF/Dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Overordnet model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "Overordnet sti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Overordnet tråd (record) ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "Ophavende arbejdsområde" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "Overordnet model der holder aliaset. Modellen med aliasreferencen er ikke nødvendigvis den model, der er givet af alias_model_id (eksempel: projekt (parent_model) og opgave (model))." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Politik til at oprette en besked på dokumentet ved hjælp af mailgatewayen.\n" +"- alle: alle kan skrive\n" +"- partnere: kun godkendte partnere\n" +"- følgere: kun følgere af det relaterede dokument eller medlemmer af følgende kanaler\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Til stede" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "Præsentationer" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "Projekt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "Læseadgang" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "Læse grupper" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Datasæt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Optag tråd ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "Relateret Arbejdsområde" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Tilbageværende Sider" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Fjern" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "Erstat" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "Erstat med" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Anmodning" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Anmod aktivitet" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Anmod " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Anmod om et dokument" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Anmod om en fil" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "Anmodet" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Anmodet dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "Påkrævede tags" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Res model navn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Ressource ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Ressource model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Navn på ressourse" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Ansvarlig" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Ansvarlig bruger" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Gendan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS leveringsfejl" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "Salg" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Gem" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "Skemalæg aktivitet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "Send dette brev til en juridisk afdeling, ved at tildele de korrekte tags." + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "Send til Juridisk" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Sekvens" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "Angiv kontakt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "Angiv ejer" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "Angiv tags" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "Angiv aktiviteten på dokumentets ejer" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Opsætning" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "Del" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "Del links" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "Del link" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "Del links" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "Del dette domæne" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "Del dette valg" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "Del type" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "Deling brugt til at oprette dette dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "Delt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "Delte dokumenter" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "Delte tags" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "Delinger & Emails" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Vis alle poster, hvor den næste aktivitetsdato er før i dag" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Størrelse" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "Del" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "Del PDF" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Status" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status baseret på aktiviteter\n" +"Forfaldne: Forfaldsdato er allerede overskredet\n" +"I dag: Aktivitetsdato er i dag\n" +"Planlagt: Fremtidige aktiviteter." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "Under arbejdsområder" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Opsummering" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Tag" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "Tag kategorier" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "Tag kategori" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Tag-navn" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "Tag eksisterer allerede for dette facet" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "Tag kategorier defineret for dette arbejdsområde" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Tags" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "Skabeloner" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "Tekst" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "Tekst vist ved at holde musen over denne tag kategori eller dets tags" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "Modellen (Odoo Document Kind), som dette alias svarer til. Enhver indgående e-mail, der ikke svarer til en eksisterende post, vil medføre oprettelse af en ny rekord af denne model (fx en projektopgave)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "Navnet på e-mail aliaset, f.eks. 'jobs', hvis du vil fange e-mails til " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "Ejeren af poster oprettet ved modtagelse af e-mails på dette alias. Hvis dette felt ikke er indstillet, forsøger systemet at finde den rigtige ejer baseret på afsenderens (Fra) adresse eller bruger administratorkontoen, hvis der ikke findes en systembruger for den pågældende adresse." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "Denne adgangs token eksistere allerede" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Denne vedhæftning er allerede et dokument" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "Denne vedhæftning vil kun være tilgængelig for valgte brugergrupper " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "Dette arbejdsområde vil kun være tilgængelig for den valgte virksomhed" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Thumbnail" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Råd: Bliv en papirløs virksomhed" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "Til Bekræftelse" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Til validering" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Dagens aktiviteter" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "Værktøjstip" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Type" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Type af undtagelsesaktivitet registreret " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "Af-arkivér" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Lås op" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Ikke navngivet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "Upload" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "Upload dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "Upload via e-mail" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Bruger" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "Moms" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "Gyldig indtil" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "Validér" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "Valideret" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "Videoer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "Vil du blive en papirløs virksomhed? Lad os udforske Odoo Dokumenter." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Beskeder fra hjemmesiden" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "Website kommunikations historik" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Uger" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "Workflow handlinger" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "Workflow regel" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "Arbejdsområde" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "Arbejdsområder" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "Wow... 6 dokumenter behandlet på et par sekunder; du er god!
    Rundvisningen er færdig. Prøv at lægge dine egne dokumenter op nu." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "Skriveadgang" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "Skrive grupper" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "Skriv et tooltip for handlingen her" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "Du kan enten overføre en fil fra din computer eller kopiere/indsætte en internethenvisning i din fil." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "YouTube video" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "slet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "dokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "dokumenter" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "dokumenter valgt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "hent" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "f.eks. drøft forslag" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "f.eks. Finans" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "f.eks. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "navn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "genopret" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "vælg" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "valgte" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "delt af" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "unavngivet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "url" diff --git a/addons_extensions/documents/i18n/de.po b/addons_extensions/documents/i18n/de.po new file mode 100644 index 000000000..e8fa3da03 --- /dev/null +++ b/addons_extensions/documents/i18n/de.po @@ -0,0 +1,4000 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Martin Trigaux, 2024 +# Wil Odoo, 2024 +# Larissa Manderfeld, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Larissa Manderfeld, 2024\n" +"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s gesperrt)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr " Vielleicht möchten Sie die Aktion „Anheften“ verwenden." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (Kopie)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (verbleibende Seiten)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s Dateien" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s Ordner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s Dokumente" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" +"%s Datei(en) nicht verschoben, da sie von einem anderen Benutzer gesperrt " +"sind" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s neue(s) Dokument(e) erstellt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s Seite(n) gelöscht" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s mit Ihnen geteilt" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Die gescannten Dateien werden automatisch in Ihrem Arbeitsbereich " +"angezeigt. Verarbeiten Sie dann Ihre Dokumente in großen Mengen mit dem " +"Zerteilungstool: Starten Sie benutzerdefinierte Aktionen, fordern Sie eine " +"Unterschrift an, wandeln Sie sie mit KI in Lieferantenrechnungen um usw." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1 Datei" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1 Ordner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1 Dokument" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Tipp: Werden Sie ein papierloses Unternehmen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Wählen Sie diese Seite ab, da wir zunächst alle Rechnungen bearbeiten" +" wollen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Wählen Sie diese Seite aus, um fortzufahren." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Powered by" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " Alle herunterladen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " Datei herunterladen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " Dateivorschau" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Hochladen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " Datei ersetzen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Dokumente" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Zugehöriger
    Datensatz
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Angefragtes Dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;Dokumente." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Anfrage" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Angefragtes Dokument" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Dokumentanfrage:
    \n" +" \n" +" Posteingang Finanzen\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hallo OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) bittet um folgendes Dokument:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Posteingang Finanzen\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Beispiel einer Notiz.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Bitte übermitteln Sie das fehlende Dokument vor dem 17/05/2021).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Dokumente\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Dokumentanfrage:
    \n" +" \n" +" Posteingang Finanzen\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hallo OdooBot,\n" +"

    \n" +" wir bitten Sie höflich, das angefragte Dokument hochzuladen:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Posteingang Finanzen\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Beispiel einer Notiz.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Bitte übermitteln Sie das fehlende Dokument vor dem 17/05/2021.\n" +"

    \n" +" Vielen Dank!\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" IhrUnternehmen\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@IhrUnternehmen.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Dokumente\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Ein Python-Dictionary, das Standardwerte zur Verfügung stellt, wenn neue " +"Datensätze für diesen Alias angelegt werden." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" +"Sie müssen einen Empfänger festlegen, wenn Sie mehrere Kürzel auf einmal " +"erstellen." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "Ein Ordner kann nicht in sich selbst enthalten sein" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "Ein Tastenkürzel kann nicht zu sich selbst verweisen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Zugriff" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Zugriffsfehler" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Zugriffstoken" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "Alle Ihre Dokumente aufrufen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "Zugriffsdokumente und Partner können nicht geändert werden." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "Zugriff auf einen Ordner und ein Dokument" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "Zugriffstoken bereits verwendet." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "Zugriffs-URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Aktion" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Aktion notwendig" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Aktiv" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Aktivitäten" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Aktivität" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Aktivitätsausnahme-Dekoration" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Aktivitätspläne" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Status der Aktivität" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Aktivitätstyp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Symbol des Aktivitätstyps" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Aktivitätstypen" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"Aktivitätspläne werden verwendet, um eine Liste von Aktivitäten mit nur wenigen Klicks zuzuweisen\n" +" (z. B. „NDA-Signaturprozess“, „Arbeitsablauf im Arbeitszentrum“...)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Aktivitätstyp" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Hinzufügen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Datei hinzufügen" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "Ordner hinzufügen" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "Stichwort „Rechnung“ hinzufügen" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "Stichwort „Validiert“ hinzufügen" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "URL hinzufügen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Neue Datei hinzufügen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Personen oder E-Mail-Adresse hinzufügen ..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "Personen oder E-Mail-Adressen hinzufügen:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "Tastenkürzel hinzufügen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "Sternchen hinzufügen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "Zusätzliche Dokumente, auf die Sie Zugriff haben." + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrator" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Werbung" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Aliaskontakt-Sicherheit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Alias-Domain" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Alias-Domainname" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Alias-E-Mail" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Alias-Name" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Alias-Status" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "Alias-Stichwörter" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" +"Alias-Status, der bei der letzten empfangenen Nachricht festgestellt wurde." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Alias-Modell" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Alle" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" +"Alles Benutzer haben Zugriff auf %(documentType)s oder das übergeordenete " +"Element darf bearbeitet werden." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "Berechtigter Zugriff" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "Bereits verknüpfte Dokumente: %s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Eine einfache Möglichkeit, eingehende E-Mails zu verarbeiten, besteht darin," +" Ihren Scanner so zu konfigurieren, dass PDFs gesendet werden an" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Eine einfache Möglichkeit, eingehende Mails zu verarbeiten, besteht darin, " +"Ihren Scanner so zu konfigurieren, dass er PDFs an Ihre Arbeits-E-Mail " +"sendet. Die gescannten Dateien werden automatisch in Ihrem Arbeitsbereich " +"angezeigt. Verarbeiten Sie dann Ihre Dokumente in großen Mengen mit dem " +"Zerteilungstool: Starten Sie benutzerdefinierte Aktionen, fordern Sie eine " +"Unterschrift an, wandeln Sie sie mit KI in Lieferantenrechnungen um usw." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Beim Hochladen ist ein Fehler aufgetreten." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "Jeder im Internet mit dem Link kann %(action)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Jeder mit dem Link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Originale Datei(en) archivieren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Sind Sie sicher, dass Sie diese Seite fokussieren möchten?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Sind Sie sicher, dass Sie die ausgewählte(n) Seite(n) löschen möchten" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Sind Sie sicher, dass Sie diese Seite löschen möchten?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "Sind Sie sicher, dass Sie das Dokument dauerhaft löschen möchten?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "Sind Sie sicher, dass Sie die Dokumente dauerhaft löschen möchten?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Da diese PDF-Datei mehrere Dokumente enthält, sollten wir sie aufteilen und " +"im Ganzen verarbeiten." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Dateianhang" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Anzahl Anhänge" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Beschreibung der Anlage" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Anhangbezeichnung" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Anlagentyp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "Verfügbare eingebettete Aktionen" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Rechnung" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Leere Seite" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Broschüren" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" +"Durch die Definition eines Ordners erzeugen die Upload-Aktivitäten ein " +"Dokument." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Abbrechen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Prüfsumme/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Kinder" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Wählen Sie einen Datensatz zur Verknüpfung" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "E-Mail-Server auswählen oder konfigurieren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Wählen Sie ein Dokument aus, indem Sie auf eine Karte klicken." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" +"Klicken Sie auf eine Miniaturansicht, um eine Vorschau des Dokuments " +"anzuzeigen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Klicken Sie auf den Seitentrenner: Diese beiden Seiten sollen nicht " +"getrennt werden, da sie zum selben Dokument gehören." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Klicken Sie auf das Kreuz, um die Vorschau zu verlassen." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "Client generiert" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Schließen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Zerteilungstools schließen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Farbe" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "Gemeinsame Wurzeln für alle Unternehmensbenutzer." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurationseinstellungen" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfiguration" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Konfigurieren" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Verträge" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Schaltflächen des Bedienfelds" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Link kopieren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "Links kopieren" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Aktivität erstellen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "Tastenkürzel erstellen" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "Einen Aktivitätsplan für Dokumente erstellen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Neue Aktivität erstellen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "Erstellung und Bearbeitung des neuen Vertrags \"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "Erstellung des neuen Vertrags \" " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Erstellt von" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Erstellungsdatum" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Benutzerdefinierte unzustellbare Nachricht" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Tage" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Standardwerte" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" +"Verzögerung nach der endgültigen Löschung des Dokuments im Papierkorb (Tage)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Löschen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Fokussierte oder ausgewählte Seiten löschen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Dauerhaft löschen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Löschverzögerung" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Löschverzögerung" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Löschverzögerung (Tage)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Nicht mehr verwendet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Details" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Verwerfen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" +"Möchten Sie gehen, ohne zu speichern oder Seiten in einem Dokument " +"zusammenzufassen?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "Dokument/Partner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "Interner Dokumentzugriff" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "Link für den Dokumentenzugriff" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Anzahl Dokumente" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Dokumentname" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Dokumentpläne" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "Dokumentumleitung" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Dokumentanfrage" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Dokumentanfrage {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "Dokumentenanfrage: %(name)s Hochgeladen von: %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Dokumentanfrage: Erinnerung" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "Dokumenttoken" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Dokumentvorschau" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "Dokument hochgeladen von %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Dokument: Dokumentanfrage" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumente" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Dokumentlink zum Datensatz" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Dokumentenerstellungs-Mixin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "Dokumente im Papierkorb können nicht geteilt werden" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "Mixin zur Entkuppelung von Dokumenten" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Erledigt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Erledigt!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Herunterladen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "#{document.name} herunterladen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Alle Dateien herunterladen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Datei herunterladen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "Ordner als ZIP herunterladen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "ZIP #{subfolder.name} herunterladen" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Entwurf" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Hier Dateien zum Upload ablegen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Fälligkeitsdatum" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Fälligkeitstyp" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Duplizieren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Bearbeiten" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Editor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "E-Mail-Alias" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "E-Mail-Aliasse" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "E-Mail-Upload" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "E-Mail-CC" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "E-Mail-Domain z. B. 'example.com' in 'odoo@example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "E-Mail-Links" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Fehler" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Vorschau/Abwählen/Verlassen escapen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Zerteilungstools verlassen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Ohne Speicherung verlassen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "Gültig:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Aufwand" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Gültigkeit" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Exportieren" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "Zusatzkommentare ..." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favorit von" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Datei" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Datei-Inhalt (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Datei-Inhalt (roh)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Datei-Erweiterung" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Dateigröße" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Hilfsmodell für Dateistreaming bei Controllern" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Dateien" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Dateizentralisierung" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" +"Die Dateien werden in den Papierkorb verschoben und für immer gelöscht, und " +"zwar nach" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" +"Die Dateien werden in den Papierkorb verschoben und nach %s Tagen gelöscht." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Finanziell" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Steuerlich" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Erste Seite der nächsten Gruppe fokussieren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Erste Seite der vorherigen Gruppe fokussieren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Nächste Seite fokussieren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Vorherige Seite fokussieren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Ordner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "Ordner" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Follower" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Follower (Partner)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "FontAwesome-Icon, z. B. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "In einem Dokument zusammenfassen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Allgemein" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "Allgemeiner Zugriff" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Gruppieren nach" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Hat eine Nachricht" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "Kürzel ausblenden" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Historie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Home" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID des übergeordneten Alias-Datensatz (Beispiel: Projekt welches den Alias " +"für die Erstellung von Aufgaben beinhaltet)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Icon" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Icon, um eine Ausnahmeaktivität anzuzeigen." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" +"Wenn „True“, können nur Personen, denen direkter Zugriff auf dieses Dokument" +" gewährt wurde, es anzeigen. Wenn „False“, erhalten auch alle Personen " +"Zugriff über den Link, die auf den übergeordneten Ordner zugreifen können." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Falls markiert, erfordern neue Nachrichten Ihre Aufmerksamkeit." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" +"Falls markiert, weisen einige Nachrichten einen Zustellungsfehler auf." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Wenn diese Option gesetzt ist, wird dieser Inhalt automatisch anstelle der " +"Standardnachricht an nichtautorisierte Benutzer gesendet." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Bilder" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" +"Ordner, die in anderen Apps benutzt werden, können nicht gelöscht werden." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" +"Es ist nicht möglich, Partner gleichzeitig zu mehreren Dokumenten " +"einzuladen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"Die folgenden Elemente können nicht verschoben werden, da dies eine rekursive Hierarchie erzeugen würde:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "Nicht erreichbar" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Eingang" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" +"Falsche Werte. Verwenden Sie einen der folgenden für die folgenden Felder: " +"%(hints)s)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Inhaltsindizierung" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Interne Benutzer" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "Interne Benutzerrechte" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "Interner Benutzer kann %(action)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "Ungültige Ordner-ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "Ungültiger Vorgang" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "Ungültige Rolle." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Ist bearbeitbarer Anhang" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Ist Favorit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Ist Follower" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "Wird als mehrseitig betrachtet" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" +"Es ist nicht möglich, archivierte Dokumente oder Dokument in archivierte " +"Ordner zu verschieben." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"Elemente, die Sie wiederherstellen möchten, sind in archivierten Ordnern enthalten. Um diese Elemente wiederherzustellen, müssen Sie stattdessen Folgendes wiederherstellen, einschließlich der Ordner:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "Elemente im Papierkorb werden nach %s Tagen für immer gelöscht." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" +"Elemente, die in den Papierkorb verschoben werden, nach %s Tagen für immer " +"gelöscht." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "Letzter Zugriff am" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Rechtliches" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Verarbeiten Sie Dokumente in Ihrem Posteingang.
    Tipp: Verwenden Sie " +"Stichwörter, um Dokumente zu filtern und Ihre Prozesse zu strukturieren." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" +"Lassen Sie uns diese Rechnungen bearbeiten: Senden Sie sie an den " +"Arbeitsbereich „Finanzen“." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Verarbeiten wir dieses Dokument, das vom Scanner kommt." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Kennzeichnen Sie diese E-Mail als „Rechtliches“
    Hinweis: Aktionen " +"können je nach Arbeitsbereich auf Ihren Prozess zugeschnitten werden." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Link" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "Linkzugriff ausgeblendet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "Zugriffsrechte für Link" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "Link-URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Link in Zwischenablage kopiert!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "Link in die Zwischenablage kopiert." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "Links in Zwischenablage kopiert!" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Erkennung des Eingangs eines lokalen Elements" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Sperren" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Gesperrt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Gesperrt von" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Notiz hinterlassen …" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Anmelden" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Abmelden" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "E-Mail: %s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "Aktivitäten als abgeschlossen markieren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "PDFs zusammenführen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Nachricht" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Nachricht mit Zustellungsfehler" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Nachrichten" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Mime-Typ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "Referenz der fehlenden Dokumente." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Modell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modelle" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Monate" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Diese Seite in den Papierkorb legen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "In Papierkorb verschieben" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "In Papierkorb verschieben" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "In Papierkorb verschieben?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "In Papierkorb verschoben" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "Sie müssen den Link haben, um zuzugreifen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Meine Aktivitäten" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Frist für meine Aktivitäten" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Meine Dokumente" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "Mein Drive" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "Für NULL-Rollen muss ein last_access_date gesetzt werden" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Name" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "Name/Erweiterung" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Neu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Neue Datei" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "Neuer Ordner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Neue Gruppe" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Nächstes Aktivitätskalenderereignis" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Nächste Aktivitätsfrist" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Zusammenfassung der nächsten Aktivität" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Nächster Aktivitätstyp" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Keine Aktivitätstypen gefunden. Erstellen Sie einen!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "Kein Alias konfiguriert" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Es wurde kein Dokument ausgewählt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "Kein Element ausgewählt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "Niemand im Internet hat Zugriff" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Keine geteilten Links" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Keine" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Keine Datei" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "Kein Ordner." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Nicht angehängt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Notiz" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Benachrichtigung" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Anzahl der Aktionen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Anzahl der Fehler" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Anzahl der Nachrichten, die eine Aktion erfordern" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Anzahl der Nachrichten mit Zustellungsfehler." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo-Logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo Website" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Ältere" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "Nur „Dokumente“-Manager können Ordner anheften." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "Nur „Dokumente“-Manager können Aliasse festlegen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "Nur „Dokumente“-Manager können einen Alias festlegen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "Nur OdooBot-eigene Stammordner können angeheftet werden." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "Nur Personen mit Zugriff können es mit diesem Link öffnen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "#{document_url.name} öffnen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "Ordner #{subfolder.name} öffnen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "Das Berechtigungsfenster öffnen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" +"Vorgang nicht unterstützt. Bitte verwenden Sie stattdessen „In den " +"Papierkorb verschieben“/`action_archive`." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" +"Vorgang nicht unterstützt. Bitte verwenden Sie stattdessen " +"„Wiederherstellen“/`action_unarchive`." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Optionale ID eines Threads (Datensatz), dem alle eingehenden Nachrichten " +"zugeordnet werden, auch wenn auf sie nicht geantwortet wird. Wenn gesetzt, " +"verhindert dies die Anlage neuer Datensätze vollständig." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "Optionale Nachricht ..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Oder versenden Sie E-Mails an" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Andere" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Besitzer" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Besitzer: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "Besitzer: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "Besitzer: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Übergeordneter Ordner" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Übergeordnetes Modell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Übergeordneter Pfad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Thread-ID des übergeordneten Datensatzes" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Das übergeordnete Modell des Alias. Dieses Modell, welches die Alias-" +"Referenz enthält, ist nicht zwangsläufig das Modell, das von alias_model_id " +"(Beispiel: project (parent_model) und task (model)) vorgegeben wird" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Teiltransfer" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "Personen mit Zugriff" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Anheften" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "An Unternehmenswurzeln angeheftet" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" +"Melden Sie sich an oder kontaktieren Sie für weitere Informationen die " +"Person, die diesen Link geteilt hat." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Richtlinie zum Hinterlassen einer Mitteilung im Dokument über das E-Mail-Gateway.\n" +"- Jeder: jeder kann eine Nachricht hinterlassen\n" +"- Partner: nur bestätigte Partner\n" +"- Follower: nur Follower des entsprechenden Dokuments\n" +" oder Mitglieder der verfolgten Kanäle\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Anwesend" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Präsentationen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "Vorschaudateien" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Projekt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Bewertungen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Neueste" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "Kürzlich verwendete Dokumente" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Datensatz" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Thread-ID des Datensatzes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Verbleibende Seiten" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Erinnerungs-E-Mails wurden versendet." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Erinnerung, das Dokument{{ object.name and ' : ' + object.name or '' }} " +"hochzuladen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "Zugriff entfernen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Mitglied entfernen" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "Stichwort „Posteingang“ entfernen" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "Stichwort „Zu validieren“ hinzufügen" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "Alle Stichwörter entfernen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "Sternchen entfernen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Umbenennen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Anfrage" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Aktivität anfragen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Anfrage an" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Dokument anfragen" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Datei anfragen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Angefragt\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Angefragtes Dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Angefragte Dokumente" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "Anfragender Partner" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Name des verantw. Modells" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Ressourcen-ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Ressourcenmodell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Ressourcenname" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Verantwortlich" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Verantwortlicher Benutzer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Wiederherstellen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Eingeschränkt" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Eingeschränkter Ordner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "Änderungen rückgängig machen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Rolle" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS-Zustellungsfehler" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Verkauf" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Speichern" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "Änderungen zuerst speichern oder verwerfen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "Speicherung ..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Alle auswählen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Fokussierte Seite auswählen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Nächste Seite auswählen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Nächten Seiten der Gruppe auswählen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Vorherige Seite auswählen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Vorherige Seiten der Gruppe auswählen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Alle Seiten auswählen/abwählen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Senden" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "An Finanzen senden" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Senden Sie dieses Schreiben an die Rechtsabteilung, indem Sie die richtigen " +"Stichwörter zuweisen." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Versand an Partner, wenn ein Dokument von diesem angefordert wird" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Sequenz" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "Aktionen festlegen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Legen Sie eine Löschverzögerung für Dokumente im Papierkorb fest" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "Ablaufdatum festlegen" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Erstellung von Erinnerungen in Aktivitäten, um Benutzer, die ihre " +"angefragten Dokumente nicht hochgeladen haben, zu benachrichtigen" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Einstellungen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Teilen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "Teilen: %(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "Mit mir geteilt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "Teilen ..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Abkürzung" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "Tastenkürzel erstellt" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "Tastenkürzel in My Drive erstellt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "Mehrere Tastenkürzel können nicht gleichzeitig erstellt werden." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "Die Tastenkürzel können das Zieldokument nicht ändern." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "Tastenkürzel können keien Dokumente enthalten." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Größe:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Einige Dateien konnten nicht hochgeladen werden (Maximale Größe: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Referenzbeleg" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "Spezielle Ordner können nicht geteilt werden" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Zerteilen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "PDF zerteilen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "Alle weißen Seiten trennen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Ausgewählte Seiten trennen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Mit Sternchen versehen" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status basierend auf Aktivitäten\n" +"Überfällig: Fälligkeitsdatum bereits überschritten\n" +"Heute: Aktivitätsdatum ist heute\n" +"Geplant: anstehende Aktivitäten." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Hier bleiben" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Struktur" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Zusammenfassung" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Stichwort" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Stichwortbezeichnung" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "Der Name des Stichworts wird bereits genutzt" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Stichwörter" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Text" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" +"Text, der angezeigt wird, wenn man mit der Maus über dieses Stichwort fährt" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "Die Löschverzögerung sollte positiv sein." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "Die Dokument-URL wurde in Ihre Zwischenablage kopiert." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "Das Dokument wurde verschoben." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"Die folgenden Dokumente können keinen Alias haben:\n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"Die folgenden Dokumente/Ordner können nicht im Besitz eines Portalbenutzers sein: \n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "Die folgenden Dokumente/Tastenkürzel weisen einen Typkonflikt auf:\n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" +"Die folgenden Tastenkürzel können nicht als übergeordnete Dokumente " +"festgelegt werden:\n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Das Modell (Odoo-Dokumentart), auf das sich der Alias bezieht. Alle " +"eingehenden E-Mails ohne Bezug zu einer bereits vorhandenen E-Mail führen " +"üblicherweise zur Erstellung eines neuen Datensatz dieses Modells (z. B. " +"Projektaufgabe)." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Die Bezeichnung des E-Mail-Alias, z. B. „Jobs“, falls Sie E-Mails für " +" erhalten möchten" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Diesen Monat" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Diese Woche" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "Diese Aktion existiert nicht." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Dieser Anhang ist bereits ein Dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "Dieses Dokument existiert nicht oder ist nicht öffentlich zugänglich." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Dieses Dokument wurde angefragt.\n" +" Laden Sie es hoch." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "Dieses Dokument wurde wiederhergestellt." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" +"Diese Datei wurde in den Papierkorb verschoben und wird auf %s für immer " +"gelöscht." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "Dieser Ordner existiert nicht." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "Dies ist ein Tastenkürzel" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "Dieser Partner ist bereits in diesem Dokument festgelegt." + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Diese stehen für die verschiedenen Kategorien von zu erledigenden Dingen (z." +" B. „Anruf“ oder „E-Mail versenden“)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Vorschaubild" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Status des Vorschaubildes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Tipp: Konfigurieren Sie Ihren Scanner so, dass alle Dokumente an diese " +"Adresse gesendet werden." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Tipp: Werden Sie ein papierloses Unternehmen" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Zu validieren" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Zu validieren" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Heute" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Favorit ein/aus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Tooltipp" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Papierkorb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "Abfallverwaltung" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Wahr, wenn wir den Linkanhang bearbeiten können." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Typ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Typ der Ausnahmeaktivität im Datensatz." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"URL %s scheint nicht vollständig zu sein, da sie nicht mit http(s):// oder " +"ftp:// beginnt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "URL-Bildvorschau" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "Nicht verfügbare Aktion." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Entsperren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Unbenannt" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Losheften" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Hochladen" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Eine Datei hochladen oder hier ablegen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Datei-Upload-Anfrage" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Benutzer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "Benutzerzugriffsrolle" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Benutzerberechtigung" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "MwSt." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Validiert" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Videos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Betrachter" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Möchten Sie einpapierloses Unternehmen werden? Entdecken Sie Odoo " +"Dokumente." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Website-Nachrichten" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Website-Kommunikationsverlauf" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Wochen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "Wie möchten Sie mit den im Arbeitsbereich verbleibenden Seiten tun?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"Wow ... Sie haben 6 Dokumente in wenigen Sekunden verarbeitet, super. " +"
    Versuchen Sie jetzt, Ihre eigenen Dokumente hochzuladen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Sie" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" +"Sie sind nicht berechtigt, Dokumente zu archivieren oder deren Archivierung " +"aufzuheben." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "Sie sind nicht berechtigt, Ordner anzuheften oder zu trennen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" +"Sie sind nicht berechtigt, den Eigentümer von Dokumenten zu ändern, die " +"Ihnen nicht gehören." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "Sie sind nicht berechtigt, all diese Elemente zu löschen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "Sie sind nicht berechtigt, eingebettete Aktionen auszuführen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "Sie sind nicht berechtigt, diesen Vorgang durchzuführen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "Sie sind nicht berechtigt, eingebettete Aktionen an-/loszuheften." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "Sie sind nicht berechtigt, in diesem Ordner zu schreiben." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Sie können entweder eine Datei von Ihrem Rechner hochladen oder einen " +"Internetlink kopieren und einfügen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "Sie können keine Aktionen für diesen Ordner anheften." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "Sie können keine Aktion in diesem Dokument anheften." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "Sie können diesen Aktionstyp nicht anheften." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" +"Sie können den Zugriff eines Tastenkürzel nicht aktualisieren, sondern " +"stattdessen ihr Ziel." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "Sie können nicht auf diese folder_id zugreifen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" +"Sie können in diesem speziellen Ordner keine Tastenkürzel erstellen oder " +"Dokumente dorthin verschieben." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "Sie können nicht auf Ordner im Papierkorb zugreifen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" +"Sie können den Besitzer von Dokumenten, die Sie nicht besitzen, nicht ändern" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "Sie können keine Stichwörter in Serveraktionen löschen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "Sie können Dokumente im Papierkorb nicht duplizieren." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "Sie können Ordner oder Dateien im Papierkorb nicht verschieben." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "Sie können diesen Partner nicht entfernen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "Sie können nicht mehrere Dokumente zur selben Zeit teilen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" +"Sie haben nicht genügend Zugriffsrechte, um diese Dokumente zu löschen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" +"Sie haben keine Berechtigung, Dokumente in diesen Ordner zu verschieben." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" +"Sie müssen sich in einem bestimmten, bearbeitbaren Arbeitsbereich befinden, " +"um Dateien hochzuladen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "Ihre Rolle: %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "Ihr individueller Raum." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "Alias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "Bytes" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "Tagen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "Dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "Dokumente" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "z. B. Angebotsbesprechung" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "z. B. Finanzen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "z. B. Fehlende Auslage" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "z. B. Zu validieren" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "z. B. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "z. B. mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "Dateien" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "Ordner" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "Ordner," + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "Elemente ausgewählt" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "auswählen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "hat ein Dokument mit Ihnen geteilt.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "hat einen Ordner mit Ihnen geteilt.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "geteilt durch" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "hat dieses Dokument mit Ihnen geteilt:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "hat diesen Ordner mit Ihnen geteilt:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "Status-Code: %(status)s, Nachricht: %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "unbenannt " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" URL" diff --git a/addons_extensions/documents/i18n/documents.pot b/addons_extensions/documents/i18n/documents.pot new file mode 100644 index 000000000..4a2a76cd4 --- /dev/null +++ b/addons_extensions/documents/i18n/documents.pot @@ -0,0 +1,3651 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-10-25 09:12+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/el.po b/addons_extensions/documents/i18n/el.po new file mode 100644 index 000000000..f8a9f79bc --- /dev/null +++ b/addons_extensions/documents/i18n/el.po @@ -0,0 +1,2882 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Stefanos Nikou , 2019 +# Martin Trigaux, 2019 +# Kostas Goutoudis , 2019 +# George Tarasidis , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.2+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2019-01-16 08:38+0000\n" +"Last-Translator: George Tarasidis , 2019\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "Ένα Python λεξικό που θα αξιολογηθεί για να παρέχει προεπιλεγμένες τιμές όταν δημιουργείτε νέες εγγραφές για αυτό το ψευδώνυμο." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Ομάδες Πρόσβασης" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Διακριτικό Πρόσβασης" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Ενέργεια" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Απαιτείται ενέργεια" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Ενέργειες" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "Σε Ισχύ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "Δραστηριότητες" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "Δραστηριότητα" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Κατάσταση Δραστηριότητας" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Τύπος Δραστηριότητας" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "Τύπος Δραστηριότητας" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Προσθήκη" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Ψευδώνυμο" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "Ψευδώνυμο Ασφάλειας Επαφής" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Ψευδώνυμο ονόματος" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "Ψευδώνυμο τομέα" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "Μοντέλο Ψευδωνύμου" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "Αρχειοθετήθηκαν" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "Αρχειοθετημένα" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Συνημμένο με" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Συνημμένο" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Όνομα Συνημμένου" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "Χρέωση" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "Ακύρωση" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Κατηγορία" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Εταιρία" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Συνθήκες" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Διαμόρφωση" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Επαφή" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "Περιέχει" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "Συμβάσεις" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Δημιουργία" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Δημιουργήθηκε από" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Ημερομηνία Δημιουργίας" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Ημέρες" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Προεπιλεγμένες τιμές" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Διαγραφή" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "Ακυρωμένος" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Περιγραφή" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "Έγγραφο" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Έγγραφα" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Τομέας" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Λήψη" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Έξοδα" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Αρχείο" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Μέγεθος Αρχείου" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Ακόλουθοι" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Ακόλουθοι (Συνεργάτες)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Μελλοντικές Δραστηριότητες" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "Ομαδοποίηση κατά" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "Κωδικός" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "Αναγνωριστικό της μητρικής εγγραφής που κρατά το ψευδώνυμο (παράδειγμα: έργο που κατέχει το ψευδώνυμο της δημιουργίας εργασίας)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Εάν επιλεγεί τα νέα μηνύματα χρειάζονται την προσοχή σας." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "Εικόνες" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Εισερχόμενα" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Αρχειοθετημένα Περιεχόμενα" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "Εσωτερικές" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "Είναι Ακόλουθος" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Τελευταία Ενημέρωση από" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Τελευταία Ενημέρωση στις" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Καθυστερημένες Δραστηριότητες" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Κλείδωμα" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "Καταγραφή ενός Σημειώματος..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Σύνδεση" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Αποσύνδεση" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "Marketing" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Μηνύματα" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Τύπος MIME" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Μοντέλο" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Μήνες" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Οι Δραστηριότητες μου" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "Τα Αγαπημένα μου" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Περιγραφή" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Επόμενη Προθεσμία Δραστηριότητας" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Σύνοψη Επόμενης Δραστηριότητας" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Επόμενος Τύπος Δραστηριότητας" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Σημείωση" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Πλήθος ενεργειών" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Πλήθος μηνυμάτων που απαιτούν ενέργεια" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Λογότυπο Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "Προαιρετική ταυτότητα ενός νήματος (εγγραφής), στην οποία όλα τα εισερχόμενα μηνύματα θα πρέπει να επισυνάπτονται, ακόμη και αν δεν απαντήσει σ 'αυτό. Εάν οριστεί, αυτό θα απενεργοποιήσει εντελώς τη δημιουργία νέων αρχείων." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Άλλο" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Ιδιοκτήτης" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Μοντέλο Γονέα" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Κωδικός γονικής εγγραφής νήματος" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "Γονικό μοντέλο κρατώντας το ψευδώνυμο. Το μοντέλο που κρατά το ψευδώνυμο αναφοράς δεν είναι απαραίτητο το μοντέλο να δίνεται από alias_model_id (παράδειγμα: Έργο (parent_model) και Εργασία (μοντέλο))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Πολιτική για τη αποστολή μηνύματος στο έγγραφο χρησιμοποιώντας το mailgateway.\n" +"- όλοι: ο καθένας μπορεί να αποστείλει\n" +"- συνεργάτες: μόνο οι επικυρωμένοι συνεργάτες \n" +"- ακόλουθοι: μόνο οι ακόλουθοι του σχετικού εγγράφου ή μέλη των παρακάτω καναλιών\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "Παρουσιάσεις" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "Έργο" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Ταυτότητα εγγραφής νήματος" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Αφαίρεση" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Αίτηση" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Αριθμός Πόρου" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Μοντέλο πόρων" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Όνομα Πόρου" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Υπεύθυνοι" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Υπεύθυνος Χρήστης" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Επαναφορά" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "Πωλήσεις" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Ακολουθία" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Ρυθμίσεις" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "Κοινοποίηση" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Εμφάνιση όλων των εγγραφών όπου η ημερομηνία επόμενης δράσης είναι πριν από σήμερα" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Μέγεθος" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "Διαχωρισμός" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Κατάσταση" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Κατάσταση βασισμένη σε δραστηριότητες\n" +"Καθυστερημένη: Η ημερομηνία λήξης έχει ήδη περάσει\n" +"Σήμερα: Η ημερομηνία δραστηριότητας είναι σήμερα\n" +"Προγραμματισμένες: Μελλοντικές δραστηριότητες." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Περίληψη" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Εικέτα" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Ετικέτες" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "Κείμενο" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "Το μοντέλο (Odoo Document Kind) στο οποίο αντιστοιχεί αυτό το ψευδώνυμο. Κάθε εισερχόμενο email που δεν έχει απαντηθεί σε υπάρχουσα εγγραφή, θα προκαλέσει τη δημιουργία μίας νέας εγγραφής αυτού του μοντέλου (π.χ. Εργασία Έργου)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "Το όνομα του ψευδώνυμου email , π.χ. 'jobs', αν θέλετε να πάρετε emails για " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "" +"Ο ιδιοκτήτης των εγγραφών που δημιουργούνται κατά τη λήψη μηνυμάτων ηλεκτρονικού ταχυδρομείου σε αυτό το ψευδώνυμο. Αν αυτό το πεδίο δεν είναι ρυθμισμένο το σύστημα θα προσπαθήσει να βρει το σωστό ιδιοκτήτη με βάση τον αποστολέα (Από) τη διεύθυνση.\n" +"Διαφορετικά, θα χρησιμοποιήσει το λογαριασμό διαχειριστή, αν ο χρήστης δεν έχει βρεθεί στο σύστημα για τη συγκεκριμένη διεύθυνση." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Μικρογραφία" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Σημερινές Δραστηριότητες" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "Επεξήγηση" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Τύπος" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Χρήστης" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "ΦΠΑ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "Ισχύει Ως" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "Επικύρωση" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "Επικυρωμένο" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "Βίντεος" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Μηνύματα Ιστότοπου" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "Ιστορικό επικοινωνίας ιστότοπου" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Εβδομάδες" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "π.χ. Συζήτηση για προσφορά" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "" diff --git a/addons_extensions/documents/i18n/es.po b/addons_extensions/documents/i18n/es.po new file mode 100644 index 000000000..28883c071 --- /dev/null +++ b/addons_extensions/documents/i18n/es.po @@ -0,0 +1,3987 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Leonardo J. Caballero G. , 2024 +# Wil Odoo, 2024 +# Larissa Manderfeld, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Larissa Manderfeld, 2024\n" +"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s bloqueado)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr " Tal vez quería utilizar la acción de fijar." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (copia)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (páginas restantes)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s archivos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s Carpetas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s documentos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s archivo(s) sin mover porque están bloqueados por otro usuario" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s nuevos documento(s) creado(s)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s página(s) eliminada(s)" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s compartido(s) con usted" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Los archivos escaneados aparecerán automáticamente en su espacio de " +"trabajo. A continuación, procese sus documentos de forma masiva con la " +"herramienta de división: lance acciones definidas por el usuario, solicite " +"una firma, convierta en facturas de proveedores con IA, etc." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1 archivo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1 carpeta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1 documento" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" +"Consejo: Conviértase en una empresa libre de " +"papel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Deselecciona esta página ya que queremos procesar todas las facturas " +"primero." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Seleccione esta página para continuar." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Con tecnología" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " Descargar todo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " Descargar archivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " Vista previa del archivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Subir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " Reemplazar archivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Documentos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Registro
    relacionado
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Documento solicitado" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;Documentos." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "Solicitud" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Documentos solicitados" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Solicitud de documento:
    \n" +" \n" +" Bandeja de entrada financiera\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hola OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) le solicita proporcionar el siguiente documento:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Bandeja de entrada financiera\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Ejemplo de una nota.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Envíenos el documento que falta antes del 17/05/2021.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" SuCompañía\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@sucompañía.com\n" +" \n" +" \n" +" | http://www.ejemplo.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Con la tecnología de Odoo Documentos de\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Solicitud de documento:
    \n" +" \n" +" Bandeja de entrada financiera\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hola OdooBot,\n" +"

    \n" +" Este es un recordatorio para que suba el documento solicitado:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Bandeja de entrada financiera\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Ejemplo de una nota.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Proporcione el documento que le pedimos antes del 17-05-2021.\n" +"

    \n" +" Gracias,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" SuCompañía\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@sucompañía.com\n" +" \n" +" \n" +" | http://www.ejemplo.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Con la tecnología de Documentos de Odoo\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Un diccionario Python que será evaluado para proporcionar valores por " +"defecto al crear nuevos registros para este alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "Se necesita un destino cuando cree varios atajos a la vez." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "No se puede incluir una carpeta en sí misma" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "Un atajo no puede llevar al atajo en sí" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Acceso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Error de acceso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Token de acceso" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "Acceder a todos sus documentos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "Los documentos de acceso y los contactos no se pueden cambiar." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "Acceso a una carpeta o un documento" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "Ya se usaron los tokens de acceso." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "URL de acceso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Acción" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Acción requerida" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Activo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Actividades" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Actividad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Decoración de Actividad de Excepción" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Planes de actividad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Estado de la actividad" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tipo de actividad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Icono de tipo de actvidad" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Tipos de actividad" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"Los planes de actividad se utilizan para asignar una lista de actividades con unos pocos clics\n" +" (p. ej. \"Proceso de firma de acuerdos de confidencialidad\", \"Flujo del espacio de trabajo\", ...)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Tipo de actividad" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Agregar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Agregar archivo" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "Agregar carpeta" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "Agregar una etiqueta “Factura”" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "Agregar etiqueta “Validado”" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Agregar URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Agregar un nuevo archivo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Agregue personas o correos electrónicos..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "Agregar personas o direcciones de correo electrónico:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "Agregar atajo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "Agregar estrella" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "Documentos adicionales a los que tiene acceso." + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrador" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Anuncios" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Seguridad de contacto del alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Dominio de alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Nombre del dominio de alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Correo electrónico del alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Nombre del alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Estado del alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "Etiquetas de alias" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Estado del alias evaluado en el último mensaje recibido." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Modelo con alias" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Todos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" +"Todos los usuarios que tengan acceso a %(documentType)s o el documento " +"principal tendrán permisos de edición." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "Acceso permitido" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "Documentos ya vinculados: %s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Una forma sencilla de procesar los correos entrantes es configurar el " +"escáner para que envíe los PDF a" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Una forma sencilla de procesar los correos entrantes es configurar su " +"escáner para que envíe archivos PDF al correo electrónico de su espacio de " +"trabajo. Los archivos escaneados aparecerán automáticamente en su espacio de" +" trabajo. Luego, procese sus documentos por lotes con la herramienta de " +"división: lance acciones definidas por usuarios, solicite firmas, " +"conviértalos a facturas de proveedor con IA, etc." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Ocurrió un error durante la subida." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "Cualquier persona en el internet con un enlace puede %(action)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Cualquier persona con el enlace" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Archivar archivo(s) original(es)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "¿Está seguro de que desea eliminar la página enfocada?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "¿Está seguro de que desea eliminar la(s) página(s) seleccionada(s)?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "¿Está seguro de que desea eliminar esta página?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "¿Está seguro de que desea eliminar permanentemente el documento?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "¿Está seguro de que desea eliminar permanentemente los documentos?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Ya que este PDF contiene múltiples documentos, vamos a dividirlo y " +"procesarlo en lote." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Archivo adjunto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Número de archivos adjuntos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Descripción del archivo adjunto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Nombre del archivo adjunto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Tipo de archivo adjunto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "Acciones incrustadas disponibles" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Factura" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Página en blanco" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Folletos" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" +"Al definir una carpeta, las actividades de subida generarán un documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Suma de verificación/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Hijos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Elegir un registro para vincular" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Elegir o configurar servidores de correo electrónico" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Haga clic en una tarjeta para seleccionar el documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" +"Haga clic sobre una miniatura para tener una vista previa del " +"documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Haga clic en el separador de páginas: no queremos separar estas dos " +"páginas ya que pertenecen al mismo documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Haga clic en la cruz para salir de la vista previa." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "Cliente generado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Cerrar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Cerrar herramientas de división" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Color" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "Raíz común para todos los usuarios de la compañía." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Compañía" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Ajustes de configuración" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Configuración" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Configurar" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Contacto" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Contratos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Botones del panel de control" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Copiar enlace" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "Copiar enlaces" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Crear actividad" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "Crear atajo" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "Crear un plan de actividades para documentos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Crear una nueva actividad" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "Crear y editar contacto nuevo \"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "Crear contacto nuevo \"" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Creado por" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Fecha de creación" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Mensaje rebotado personalizado" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Días" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Valores por defecto" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" +"Plazo después de mover permanentemente el documento a la papelera (días)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Eliminar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Eliminar las páginas enfocadas o seleccionadas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Eliminar permanentemente " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Plazo de eliminación" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Plazo de eliminación" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Plazo de eliminación (días)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Obsoleto" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Detalles" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Descartar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" +"¿Está seguro de que desea salir sin guardar o agrupar páginas en un " +"documento?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "Documento / Contacto" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "Acceso interno a los documentos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "Enlace de acceso al documento" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Número de documentos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Nombre del documento" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Planes de documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "Redirección de documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Solicitud de documento" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Solicitud de documento {{ object.name != False and ': '+ object.name or '' " +"}}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "Solicitud de documento: %(name)s Subido por: %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Solicitud de documento: recordatorio" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "Token de documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Vista previa del documento" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "Documento subido por %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Documento: solicitud de documento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Documentos" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Enlace del documento al registro" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Mixin de creación de documentos " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "Los documentos que estén en la papelera no se pueden compartir" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "Mixin de desvinculación de documentos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Hecho" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "¡Hecho!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Descargar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "Descargar #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Descargar todos los archivos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Descargar archivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "Descargar carpeta como zip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "Descargar zip #{subfolder.name}" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Borrador" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Arrastra los archivos aquí para subirlos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Fecha de vencimiento en" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipo de vencimiento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Duplicar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Editar" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Editor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Alias de correo electrónico" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Alias de correo electrónico" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "Subir correo electrónico" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "CC del correo electrónico" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "" +"Dominio del correo electrónico, p. ej. \"ejemplo.com\" en " +"\"odoo@ejemplo.com\"" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "Enlaces de correo electrónico" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Error" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Salir de la vista previa/deseleccionar/salir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Salir de herramientas de división" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Salir sin guardar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "Previsto:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Gasto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Vencimiento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Exportar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "Comentarios adicionales..." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favorito de" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Archivo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Contenido del archivo (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Contenido del archivo (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Extensión del archivo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Tamaño del archivo" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Modelo de ayuda para la transmisión de archivos para controladores" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Archivos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Centralización de archivos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" +"Los archivos se moverán a la papelera y después se eliminarán " +"definitivamente después de" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" +"Los archivos se moverán a la papelera y se eliminarán definitivamente " +"después de %s días." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Financiero" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Fiscal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Enfocar la primera página del siguiente grupo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Enfocar la primera página del grupo anterior" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Enfocar la siguiente página" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Enfocar la página anterior" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Carpeta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "Carpetas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Seguidores" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidores (Contactos)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Icono de Font Awesome p. ej. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Agrupar en un documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "General" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "Acceso general" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "RR. HH." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Tiene un mensaje" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "Ocultar atajos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Historial" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Inicio" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID del registro padre que tiene el alias. (ejemplo: el proyecto que contiene" +" el alias para la creación de tareas)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Icono" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Icono para indicar una actividad de excepción." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" +"Si “True” solo las personas que tengan acceso directo a este documento " +"podrán verlo. Si “False”, todas las personas que tengan acceso a la carpeta " +"principal podrán acceder por medio de un enlace." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Si está marcada, hay nuevos mensajes que requieren su atención." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Si está marcada, algunos mensajes tienen error de envío." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Si se configura, este contenido se enviará automáticamente a usuarios no " +"autorizados en lugar del mensaje por defecto." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Imagenes" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "No es posible eliminar carpetas que se usen en otras aplicaciones." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "No es posible invitar contactos a varios documentos a la vez." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"No es posible mover los siguientes elementos ya que crearía una jerarquía recursiva:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "No se puede acceder" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Bandeja de entrada" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" +"Valores incorrectos. Use uno de los siguientes valores para los campos a " +"continuación: %(hints)s.)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Contenido indexado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Usuarios internos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "Permisos para usuarios internos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "Los usuarios internos pueden %(action)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "ID de carpeta no válido" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "Operación no válida" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "Rol no válido" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Es un archivo adjunto editable" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Es favorito" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Es un seguidor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "Se considera de varias páginas" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" +"No es posible mover documentos archivados o documentos a carpetas " +"archivadas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"Los elementos que quiere restaurar están incluidos en carpetas archivadas. Para restaurar estos elementos, debe restaurar las siguientes carpetas:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" +"Los elementos en la papelera se eliminarán definitivamente después de %s " +"días." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" +"Los elementos en la papelera se eliminarán definitivamente después de %s " +"días." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "Último acceso el" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Legal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Procesemos esto en su bandeja de entrada.
    Consejo: Use etiquetas para" +" filtrar documentos y estructurar su proceso." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" +"Procesemos estas facturas: envíelas al espacio de trabajo de Finanzas." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Procesemos este documento proveniente de nuestro escáner." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Etiquetemos este correo como legal
    Consejo: las acciones pueden " +"adaptarse a su proceso, según el espacio de trabajo." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Enlace" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "Acceso por enlace oculto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "Permisos de acceso con el enlace" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "URL del enlace" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "¡Enlace copiado al portapapeles!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "Enlace copiado al portapapeles." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "¡Enlace copiado al portapapeles!" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Detección de entradas basada en partes locales" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Bloquear" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Bloqueado" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Bloqueado por" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Registrar una nota..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Usuario" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Cerrar sesión" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "Correo electrónico: %s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "Marcar actividades como completadas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "Fusionar PDFs" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Mensaje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Error de envío de mensaje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Mensajes" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Tipo de MIME" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "Referencia de los documentos faltantes." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Modelo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modelos" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Meses" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Mover esta página a la papelera" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Mover a la papelera" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Mover a la papelera" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "¿Mover a la papelera?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Movido a la papelera" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "Debe tener el enlace para acceder" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Mis actividades" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Fecha límite de mi actividad" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Mis documentos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "Mi Drive" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "Los roles NULL deben tener una last_access_date configurada" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nombre" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "Nombre / Extensión" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Nuevo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Nuevo archivo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "Nueva carpeta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Nuevo grupo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Siguiente evento en el calendario de actividades." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Fecha límite de la siguiente actividad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Resumen de la siguiente actividad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Tipo de la siguiente actividad" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "No se encontraron tipos de actividad. ¡Creemos uno!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "No hay ningún alias configurado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "No se ha seleccionado ningún documento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "Ningún elemento seleccionado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "Nadie en el internet puede acceder" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Sin enlaces compartidos" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Ninguno" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "No es un archivo" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "No es una carpeta." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "No adjunto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Nota" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Notificar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Número de acciones" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Número de errores" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Número de mensajes que requieren una acción" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Número de mensajes con error de envío" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Logotipo de Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Sitio Web de Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Más antiguos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "Solo los gerentes de Documentos pueden fijar carpetas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "Solo los gerentes de Documentos pueden configurar los alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "Solo los gerentes de Documentos pueden configurar un alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "Solo las carpetas de raíz que pertenezcan a OdooBot pueden fijarse." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "Solo personas con acceso pueden abrir el enlace" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "Abrir #{document_url.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "Abrir carpeta #{subfolder.name}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "Abrir el panel de permisos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" +"La operación no es compatible. Use \"Mover a la papelera\" `action_archive` " +"en su lugar." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" +"La operación no es compatible. Use \"Restaurar\" `action_unarchive` en su " +"lugar." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"ID opcional de un hilo (registro) al que se adjuntarán todos los mensajes " +"entrantes, incluso si no fueron respuestas del mismo. Si se establece, se " +"deshabilitará completamente la creación de nuevos registros." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "Mensaje opcional..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "O enviar correos electrónicos a" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Otro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Propietario" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Propietario: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "Propietario: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "Propietario: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Carpeta padre" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Modelo padre" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Ruta padre" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID del hilo del registro padre" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Modelo padre que contiene el alias. El modelo que contiene la referencia del" +" alias no es necesariamente el modelo dado por alias_model_id (example: " +"project (parent_model) and task (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Transferencia parcial" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Contacto" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "Personas con acceso" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Fijar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "Fijado a la raíz de la compañía" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" +"Inicie sesión o póngase en contacto con la persona que compartió este enlace" +" para más información." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Política para publicar un mensaje en el documento utilizando el servidor de correo.\n" +"- todo el mundo: todos pueden publicar\n" +"- contactos: sólo contactos autenticados\n" +"- seguidores: sólo seguidores del documento relacionado o miembros de los siguientes canales\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Presente" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Presentaciones" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "Vista previa de archivos" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Proyecto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Calificaciones" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Reciente" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "Documentos recientemente abiertos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Registro" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID del hilo de registro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Páginas restantes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Se han enviado correos electrónicos de recordatorios." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Recordatorio para subir su documento{{ object.name y ' : ' + object.name o " +"'' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "Eliminar acceso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Eliminar miembro" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "Eliminar etiqueta de bandeja de entrada" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "Eliminar etiqueta a validar" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "Eliminar todas las etiquetas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "Eliminar estrella" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Renombrar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Solicitud" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Solicitar actividad" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Solicitud de " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Solicitar un documento" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Solicitar un archivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Solicitado\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Documento solicitado" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Documentos solicitados" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "Contacto solicitante" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Nombre del modelo del recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID del recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Modelo del recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Nombre del recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Responsable" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Usuario responsable" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Restaurar" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Restringido" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Carpeta restringida" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "Revertir cambios" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Rol" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Error de envío del SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Ventas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Guardar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "Guardar o descartar cambios primero" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "Guardando..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Seleccionar todos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Seleccionar la página enfocada" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Seleccionar la siguiente página" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Seleccionar las siguientes páginas del grupo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Seleccionar la página anterior" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Seleccionar las páginas anteriores del grupo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Seleccionar/deseleccionar todas las páginas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Enviar" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "Enviar a finanzas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Envíe esta carta al departamento legal al asignarle las etiquetas adecuadas." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Enviado al contacto cuando se le solicita un documento" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "Establecer acciones" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Establecer plazo de eliminación para los documentos en la papelera" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "Establecer fecha de vencimiento" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Configure recordatorios en las actividades para notificar a los usuarios que" +" no subieron su documento solicitado" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Ajustes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Compartir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "Compartir: %(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "Compartido conmigo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "Compartiendo..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Acceso rápido" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "Atajo creado" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "Atajo creado en Mi Drive" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "Solo puede crear un atajo a la vez." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "No puede cambiar el documento objetivo de los atajos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "Los atajos no pueden contener documentos." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Tamaño:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Algunos archivos no se pudieron subir (tamaño máximo: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Documento de origen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "No se pueden compartir las carpetas especiales" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Dividir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Dividir PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "Dividir todas las páginas blancas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Dividir páginas seleccionadas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Destacado" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Estado basado en actividades\n" +"Vencida: la fecha límite ya ha pasado\n" +"Hoy: la fecha límite es hoy\n" +"Planificada: actividades futuras." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Quedarse aquí" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Estructura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Resumen" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Etiqueta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Nombre de etiqueta" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "El nombre de la etiqueta ya está en uso" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Etiquetas" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Texto" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "El texto que se muestra al pasar el cursor por esta etiqueta" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "El plazo de eliminación debe ser positivo." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "La URL del documento se ha copiado a su portapapeles." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "Se ha movido el documento." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"Los siguientes documentos no pueden tener un alias:\n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"Los siguientes documentos o carpetas no pueden ser propiedad de un usuario del portal:\n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "El tipo de los siguientes documentos o atajos no coincide:\n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" +"Los siguientes atajos no pueden establecerse como documentos principales:\n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"El modelo (Tipo de documento de Odoo) al que corresponde este alias. " +"Cualquier correo entrante que no sea respuesta a un registro existente, " +"causará la creación de un nuevo registro de este modelo (por ejemplo, una " +"tarea de proyecto)." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"El nombre de este alias de correo electrónico. Por ejemplo, \"trabajos\", " +"si lo que quiere es obtener los correos para " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Este mes" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Esta semana" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "Esta acción no existe." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Este archivo adjunto ya es un documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "Este documento no existe o no está disponible al público." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Este documento ha sido solicitado.\n" +" Súbalo." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "Se ha restaurado este documento." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" +"Este archivo ha sido enviado a la papelera y será eliminado definitivamente " +"el %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "Esta carpeta no existe." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "Este es un atajo" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "Este contacto ya está configurado en este documento." + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Representan las diferentes categorías de cosas que se deben hacer (p. ej. " +"\"Llamar\" o \"Enviar correo electrónico\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Estado de la miniatura" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Consejo: configure su escáner para enviar todos los documentos a esta " +"dirección." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Consejo: Conviértase en una empresa libre de papel" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "A validar" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "A validar" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Hoy" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Alternar favorito" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Información sobre herramientas" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Papelera" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "Gestión de basura" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Es True si podemos editar el archivo adjunto del enlace." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tipo" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Tipo de actividad de excepción en el registro." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"Parece que la URL %s no está completa ya que no inicia con http(s):// o " +"ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "Imagen de la vista previa de la URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "Acción no disponible." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Desbloquear" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Sin nombre" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Desfijar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Subir" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Suba un archivo o arrástrelo aquí." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Subir solicitud de archivo" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Usuario" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "Rol de acceso de usuario" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Permiso del usuario" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "NIF" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Validado" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Vídeos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Visor" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"¿Quiere convertirse en una empresa sin papel? Descubre Odoo " +"Documentos." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Mensajes del sitio web" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Historial de comunicación del sitio web" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Semanas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "¿Qué desea hacer con las páginas restantes?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"Guau... 6 documentos procesados en pocos segundos. Eres bueno.
    El " +"recorrido está completo. Intente subir sus propios documentos ahora." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Usted" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "No está permitido archivar o desarchivar documentos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "No está permitido fijar o desfijar carpetas" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" +"No puede cambiar quién es el propietario de documentos que no le pertenecen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "No está permitido eliminar todos estos elementos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "No está permitido ejecutar acciones incrustadas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "No está permitido realizar esta operación." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "No está permitido fijar o desfijar acciones incrustadas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "No está permitido escribir en esta carpeta." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Puede subir un archivo de su ordenador o copiar/pegar un enlace de internet " +"a su archivo." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "No está permitido fijar acciones para esa carpeta." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "No está permitido fijar una acción a ese documento." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "No está permitido fijar ese tipo de acción." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" +"No puede actualizar el acceso de un atajo, en su lugar, actualice el " +"objetivo." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "No puede acceder a folder_id." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "No puede crear atajos en o mover documentos a esta carpeta especial." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "No puede cambiar el propietario de documentos que no son suyos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "No puede eliminar las etiquetas que se usen en acciones del servidor." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "No puede duplicar documentos que estén en la papelera." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "No puede eliminar este contacto." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "No puede compartir varios documentos al mismo tiempo" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" +"No tiene los permisos de acceso suficientes para eliminar estos documentos." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" +"No tiene los permisos de acceso para mover los documentos a esa carpeta." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" +"Debe estar en un espacio de trabajo específico con permisos de escritura " +"para subir archivos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "Su rol: %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "Su espacio individual." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "alias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "bytes" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "días." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "documentos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "p. ej. Discutir propuesta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "p. ej. finanzas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "p. ej. Gasto faltante" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "p. ej. A validar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "p. ej. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "p. ej. micompañía.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "archivos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "carpeta " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "carpetas," + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "elementos seleccionados" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "seleccionar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "ha compartido un documento con usted.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "ha compartido una carpeta con usted.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "compartidos por" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "ha compartido este documento con usted:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "ha compartido esta carpeta con usted:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "código del estado: %(status)s, mensaje: %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "sin nombre" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" URL" diff --git a/addons_extensions/documents/i18n/es_419.po b/addons_extensions/documents/i18n/es_419.po new file mode 100644 index 000000000..a646df71b --- /dev/null +++ b/addons_extensions/documents/i18n/es_419.po @@ -0,0 +1,3989 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Wil Odoo, 2024 +# Patricia Gutiérrez Capetillo , 2024 +# Fernanda Alvarez, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Fernanda Alvarez, 2024\n" +"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_419\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s bloqueado)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "Quizá intentó usar la acción fijar." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (copia)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (páginas restantes)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s archivos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s Carpetas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s documentos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s archivos sin mover porque otro usuario los bloqueó" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s nuevos documentos creados" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s páginas eliminadas" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s compartidos con usted" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Los archivos escaneados aparecerán de forma automática en su espacio de " +"trabajo. Luego, procese sus documentos en lote con la herramienta de " +"división: active acciones definidas por el usuario, solicite una firma, " +"convierta a facturas de proveedor con IA, etc." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1 archivo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1 carpeta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1 documento" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" +"Consejo: conviértase en una empresa libre de " +"papel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Deje de seleccionar esta página para procesar todas las facturas " +"primero." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Seleccione esta página para continuar." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Con la tecnología de" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " Descargar todo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " Descargar archivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " Previsualizar archivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Subir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " Reemplazar archivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Documentos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Registro
    relacionado
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Documento solicitado" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "Documentos." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "Solicitud" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Documentos solicitados" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Solicitud de documento:
    \n" +" \n" +" Bandeja de entrada financiera\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hola OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) solicita que proporcione el siguiente documento:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Bandeja de entrada financiera\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Ejemplo de una nota.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Envíenos el documento que le pedimos antes del 17-05-2021.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" SuEmpresa\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@suempresa.com\n" +" \n" +" \n" +" | http://www.ejemplo.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Con la tecnología de Documentos de Odoo\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Solicitud de documento:
    \n" +" \n" +" Bandeja de entrada financiera\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hola OdooBot,\n" +"

    \n" +" Este es un recordatorio para que suba el documento solicitado:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Bandeja de entrada financiera\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Ejemplo de una nota.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Proporcione el documento que le pedimos antes del 17-05-2021.\n" +"

    \n" +" Gracias,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" SuEmpresa\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@suempresa.com\n" +" \n" +" \n" +" | http://www.ejemplo.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Con la tecnología de Documentos de Odoo\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Un diccionario de Python que se evaluará con el fin de proporcionar valores " +"predeterminados cuando se creen nuevos registros para este seudónimo." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "Se necesita un destino cuando cree varios atajos a la vez." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "No se puede incluir una carpeta en sí misma" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "Un atajo no puede llevar al atajo en sí" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Acceso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Error de acceso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Token de acceso" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "Acceda a todos sus documentos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "Los documentos de acceso y los contactos no se pueden cambiar." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "Acceso a una carpeta o documento" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "Ya se usaron los tokens de acceso." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "URL de acceso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Acción" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Se requiere una acción" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Activo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Actividades" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Actividad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Decoración de la actividad de excepción" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Planes de actividad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Estado de la actividad" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tipo de actividad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Icono del tipo de actividad" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Tipos de actividad" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"Los planes de actividad se utilizan para asignar una lista de actividades con unos cuantos clics\n" +" (por ejemplo, \"Proceso de firma de acuerdos de confidencialidad\", \"Flujo del espacio de trabajo\", entre otras)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Tipo de actividad" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Agregar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Agregar archivo" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "Agregar carpeta" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "Agregar una etiqueta a la factura" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "Agregar etiqueta validada" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Agregar URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Agregar un nuevo archivo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Agregue personas o correos electrónicos..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "Agregar personas o direcciones de correo:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "Agregar atajo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "Agregar estrella" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "Documentos adicionales a los que tiene acceso." + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrador" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Anuncios" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Seudónimo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Seudónimo del contacto de seguridad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Dominio del seudónimo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Nombre del dominio del seudónimo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Correo electrónico del seudónimo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Nombre del seudónimo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Estado del seudónimo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "Etiquetas de seudónimos" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Estado del seudónimo evaluado en el último mensaje recibido." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Modelo con seudónimo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Todos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" +"Todos los usuarios que tengan acceso a %(documentType)s o el documento " +"principal tendrán permisos de edición." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "Acceso permitido" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "Documentos ya vinculados: %s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Una forma sencilla de procesar los correos entrantes es configurar su " +"escáner para que envíe los archivos PDF al" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Una forma sencilla de procesar los correos entrantes es configurar su " +"escáner para que envíe archivos PDF al correo electrónico de su espacio de " +"trabajo. Los archivos escaneados aparecerán de forma automática en su " +"espacio de trabajo. Luego, procese sus documentos por lotes con la " +"herramienta de división: lance acciones definidas por usuarios, solicite " +"firmas, conviértalos a facturas de proveedor con IA, etc." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Ocurrió un error durante la carga." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "Cualquier persona en internet con un enlace pueden %(action)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Cualquier persona que tenga el enlace" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Archivar archivos originales" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "¿Está seguro de que desea eliminar la página resaltada?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "¿Está seguro de que desea eliminar las páginas seleccionadas?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "¿Está seguro de que desea eliminar esta página?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "¿Está seguro de que desea eliminar permanentemente el documento?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "¿Está seguro de que desea eliminar permanentemente los documentos?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Como este PDF contiene varios documentos, vamos a dividirlo y procesarlo en " +"lote." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Archivo adjunto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Número de archivos adjuntos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Descripción del archivo adjunto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Nombre del archivo adjunto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Tipo de archivo adjunto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "Acciones incrustadas disponibles" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Factura" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Página en blanco" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Folletos" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" +"Si define una carpeta, las actividades de carga generarán un documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Suma de verificación/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Hijos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Elija un registro para vincular" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Elegir o configurar servidores de correo electrónico" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Haga clic en una tarjeta para seleccionar el documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" +"Haga clic sobre una miniatura paratener una vista previa del " +"documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Haga clic en el separador de páginas: No queremos separar estas dos " +"páginas ya que pertenecen al mismo documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" +"Haga clic en el icono con forma de x para salir de la vista previa." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "Cliente generado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Cerrar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Cerrar herramientas de división" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Color" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "Origen común para todos los usuarios de la empresa." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Empresa" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Ajustes de configuración" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Configuración" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Configurar" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Contacto" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Contratos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Botones del panel de control" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Copiar enlace" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "Copiar enlaces" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Crear actividad" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "Crear atajo" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "Crear un documento de planeación de actividad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Crear una nueva actividad" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "Crear y editar contacto nuevo \"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "Crear contacto nuevo \"" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Creado por" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Fecha de creación" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Mensaje personalizado en caso de devolución" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Días" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Valores predeterminados" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" +"Plazo después de mover permanentemente el documento a la papelera (días)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Eliminar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Eliminar las páginas resaltadas o seleccionadas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Eliminar permanentemente " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Plazo de eliminación" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Plazo de eliminación" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Plazo de eliminación (días)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Obsoleto" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Detalles" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Descartar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" +"¿Está seguro de que desea salir sin guardar o agrupar páginas en un " +"documento?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "Documento / Contacto" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "Acceso interno de los documentos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "Enlace de acceso al documento" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Número de documentos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Nombre del documento" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Planes de documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "Redirección de documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Solicitud de documento" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Solicitud de documento {{ object.name != False and ': '+ object.name or '' " +"}}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "Solicitud de documento: %(name)s Subido por: %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Solicitud de documento: recordatorio" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "Token de documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Vista previa del documento" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "Documento subido por %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Documento: solicitud de documento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Documentos" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Documentos vinculados para registrar" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Mixin de creación de documentos " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "Los documentos que estén en la papelera no se pueden compartir" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "Mixin de desvinculación de documentos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Listo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "¡Listo!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Descargar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "Descargar #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Descargar todos los archivos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Descargar archivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "Descargar folder como zip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "Descargar zip #{subfolder.name}" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Borrador" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Arrastre los archivos aquí para subirlos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Fecha de vencimiento en" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipo de vencimiento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Duplicar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Editar" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Editor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Seudónimo de correo electrónico" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Seudónimos de correos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "Subir al correo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "CC del correo electrónico" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "" +"Dominio del correo electrónico, por ejemplo, \"ejemplo.com\" en " +"\"odoo@ejemplo.com\"" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "Enlaces de correo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Error" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Salir de la vista previa/dejar de seleccionar/salir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Salir de herramientas de división" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Salir sin guardar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "Exp:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Gasto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Vencimiento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Exportar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "Comentarios adicionales..." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favorito de" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Archivo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Contenido del archivo (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Contenido del archivo (sin procesar)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Extensión del archivo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Tamaño del archivo" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Modelo de ayuda para la transmisión de archivos para controladores" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Archivos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Centralización de archivos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" +"Los archivos se moverán a la papelera y después se eliminarán " +"definitivamente" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" +"Los archivos se moverán a la papelera y se eliminarán definitivamente " +"después de %s días." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Financiero" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Fiscal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Destacar la primera página del siguiente grupo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Destacar la primera página del grupo anterior" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Destacar la siguiente página" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Destacar la página anterior" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Carpeta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "Carpetas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Seguidores" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidores (contactos)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Icono de Font Awesome, por ejemplo, fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Agrupar en un documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "General" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "Acceso general" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "RR. HH." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Tiene un mensaje" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "Ocultar atajos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Historial" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Inicio" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID del registro principal que tiene el seudónimo (ejemplo: el proyecto que " +"contiene el seudónimo para la creación de tareas)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Icono" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Icono que indica una actividad de excepción." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" +"Si \"Verdadero\" solo las personas que tengan acceso directo a este " +"documento podrán verlo. Si \"Falso\", todas las personas que tengan acceso a" +" la carpeta principal podrán acceder por medio de un enlace." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" +"Si se encuentra seleccionado, hay nuevos mensajes que requieren su atención." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Si se encuentra seleccionado, algunos mensajes tienen error de envío." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Si se establece, este contenido se enviará en automático a los usuarios no " +"autorizados en vez del mensaje predeterminado." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Imágenes" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "No es posible borrar carpetas que se usen en otras aplicaciones." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "No es posible invitar contactos a varios documentos a la vez" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"No es posible mover los siguientes elementos ya que crearía una jerarquía recursiva:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "No se puede acceder" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Bandeja de entrada" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" +"Valores incorrectos. Use uno de los siguientes valores para los campos a " +"continuación: %(hints)s.)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Contenido indexado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Usuarios internos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "Permisos para usuarios internos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "Los usuarios internos pueden %(action)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "ID de carpeta no válida" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "Operación no válida" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "Función inválida." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Es un archivo adjunto editable" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Favorito" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Es un seguidor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "Se considera de varias páginas" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" +"No es posible mover documentos archivados o documentos a carpetas " +"archivadas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"Los elementos que quiere restaurar están incluidos en carpetas archivadas. Para restaurar estos elementos, en su lugar debe restaurar las siguientes carpetas:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" +"Los elementos en la papelera se eliminarán definitivamente después de %s " +"días." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" +"Los elementos en la papelera se eliminarán definitivamente después de %s " +"días." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "Último acceso el" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Legal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Procesemos esto en su bandeja de entrada.
    Consejo: Use etiquetas para" +" filtrar documentos y estructurar su proceso." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" +"Procesemos estas facturas: envíelas al espacio de trabajo de Finanzas." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Procesemos este documento proveniente de nuestro escáner." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Etiquetemos este correo como legal
    Consejo: las acciones pueden " +"adaptarse a su proceso, según el espacio de trabajo." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Enlace" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "Enlace de acceso oculto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "Permisos de acceso con el enlace" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "URL del enlace" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "¡Enlace copiado al portapapeles!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "Enlace copiado al portapapeles." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "¡Enlace copiado al portapapeles!" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Detección entrante basada en la parte local" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Bloquear" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Bloqueado" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Bloqueado por" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Registrar una nota..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Iniciar sesión" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Cerrar sesión" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "Correo electrónico: %s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "Marcar actividades como completas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "Fusionar PDF" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Mensaje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Error al enviar el mensaje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Mensajes" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Tipo MIME" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "Referencia de los documentos faltantes." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Modelo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modelos" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Meses" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Mover esta página a la papelera" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Mover a la papelera" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Mover a la papelera" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "¿Mover a la papelera?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Se movió a la papelera" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "Debe tener el enlace para acceder" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Mis actividades" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Fecha límite de mi actividad" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Mis documentos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "Mi Drive" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "Las funciones NULL deben tener una last_access_date configurada" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nombre" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "Nombre / Extensión" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Nuevo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Nuevo archivo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "Nueva carpeta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Nuevo grupo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Siguiente evento en el calendario de actividades" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Siguiente fecha límite de la actividad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Resumen de la siguiente actividad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Tipo de la siguiente actividad" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "No se encontraron tipos de actividad. ¡Creemos uno!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "No hay ningún seudónimo configurado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "No se seleccionó ningún documento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "No se seleccionó ningún elemento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "Nadie en el internet puede acceder" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Sin enlaces compartidos" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Ninguno" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "No es un archivo" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "No es una carpeta." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "No adjunto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Nota" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Notificar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Número de acciones" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Número de errores" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Número de mensajes que requieren una acción" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Número de mensajes con error de envío" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Logo de Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Sitio web de Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Antiguos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "Solo los gerentes de Documentos pueden fijar carpetas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "Solo los gerentes de Documentos pueden configurar seudónimos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "Solo los gerentes de Documentos pueden configurar seudónimos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "Solo las carpetas de raíz que pertenezcan a OdooBot pueden fijarse." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "Solo personas con acceso pueden abrir el enlace" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "Abrir #{document_url.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "Abrir carpeta #{subfolder.name}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "Abrir el panel de permisos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" +"La operación no es compatible. Use \"Mover a la papelera\" `action_archive` " +"en su lugar." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" +"La operación no es compatible. Use \"Restaurar\" `action_unarchive` en su " +"lugar." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"ID opcional de un hilo (registro) al que se adjuntarán todos los mensajes " +"entrantes, incluso si no fueron respuestas del mismo. Si se establece, se " +"deshabilitará por completo la creación de nuevos registros." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "Mensaje opcional..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "O enviar correos electrónicos a" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Otro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Propietario" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Propietario: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "Dueño: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "Dueño: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Carpeta principal" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Modelo principal" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Ruta principal" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID del hilo del registro principal" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Modelo principal que posee el seudónimo. El modelo que contiene la " +"referencia del seudónimo no es necesariamente el modelo dado por " +"alias_model_id (por ejemplo: proyecto (parent_model) y tarea (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Transferencia parcial" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Contacto" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "Personas con acceso" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Fijar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "Fijado a la raíz de la empresa" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" +"Inicie sesión o póngase en contacto con la persona que compartió este enlace" +" para más información." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"La política sobre cómo publicar un mensaje en el documento con el servidor de correo.\n" +"- Todos: todos pueden publicar\n" +"- Contactos: solo los contactos verificados\n" +"- Seguidores: solo los seguidores del documento relacionado o los miembros de los canales\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Presente" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Presentaciones" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "Previsualizar archivos " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Proyecto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Calificaciones" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Reciente" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "Documentos recientemente abiertos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Registro" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID del hilo de registro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Páginas restantes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Se enviaron los correos de recordatorio." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Recuerde subir su documento{{ object.name and ' : ' + object.name or '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "Quitar acceso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Eliminar miembro" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "Quitar etiqueta de bandeja de entrada" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "Quitar etiqueta por validar" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "Quitar todas las etiquetas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "Quitar estrella" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Renombrar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Solicitar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Solicitar actividad" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Solicitar a" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Solicitar un documento" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Solicitar un archivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Solicitado\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Documento solicitado" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Documentos solicitados" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "Contacto solicitante" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Nombre del modelo del recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID del recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Modelo del recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Nombre del recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Responsable" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Usuario responsable" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Restaurar" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Restringido" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Carpeta restringida" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "Revertir cambios" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Función" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Error en el envío del SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Ventas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Guardar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "Guardar o descartar cambios primero" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "Guardando..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Seleccionar todos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Seleccionar la página resaltada" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Seleccionar la siguiente página" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Seleccionar las siguientes páginas del grupo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Seleccionar la página anterior" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Seleccionar las páginas anteriores del grupo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Seleccionar o dejar de seleccionar todas las páginas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Enviar" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "Enviar a finanzas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Asigne las etiquetas adecuadas y envíe esta carta al departamento legal." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Se envía al contacto cuando se le solicita un documento" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "Establecer acciones" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Establecer plazo de eliminación para los documentos en la papelera" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "Establecer fecha de vencimiento" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Configure recordatorios en las actividades para notificar a los usuarios que" +" no subieron su documento solicitado" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Ajustes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Compartir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "Compartir: %(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "Compartido conmigo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "Compartiendo..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Acceso directo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "Atajo creado" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "Atajo creado en Mi Drive" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "Solo puede crear un atajo a la vez." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "No puede cambiar el documento objetivo de los atajos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "Los atajos no pueden contener documentos." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Tamaño:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Algunos archivos no se pudieron cargar (tamaño máximo: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Documento origen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "Las carpetas especiales no se pueden compartir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Dividir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Dividir PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "Dividir todas las páginas vacías" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Dividir páginas seleccionadas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Destacado" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Estado según las actividades\n" +"Vencida: ya pasó la fecha límite\n" +"Hoy: hoy es la fecha de la actividad\n" +"Planeada: futuras actividades." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Permanecer aquí" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Estructura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Resumen" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Etiqueta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Nombre de la etiqueta" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "El nombre de la etiqueta ya se está usando" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Etiquetas" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Texto" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "El texto que se muestra al pasar el cursor por esta etiqueta" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "El plazo de eliminación debe ser positivo." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "La URL del documento se copió a su papelera." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "El documento se movió." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"Los siguientes documentos no pueden tener un seudónimo:\n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"Los siguientes documentos o carpetas no pueden pertenecerle a un usuario del portal:\n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "El tipo de los siguientes documentos o atajos no coincide:\n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" +"Los siguientes atajos no pueden establecerse como documentos principales:\n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"El modelo (tipo de documento de Odoo) al que corresponde este seudónimo. " +"Cualquier correo entrante que no sea respuesta a un registro existente " +"creará un nuevo registro de este modelo (por ejemplo, una tarea de " +"proyecto)." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"El nombre del seudónimo de correo electrónico. Por ejemplo, \"trabajos\" si " +"desea recibir correos electrónicos en ." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Este mes" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Esta semana" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "Esta acción no existe." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Este archivo adjunto ya es un documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "Este documento no existe o no está disponible al público." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Se solicitó este documento.\n" +" Súbalo." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "Este documento se restableció." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" +"Este archivo se movió a la papelera y se eliminará definitivamente el %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "Esta carpeta no existe." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "Este es un atajo" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "Este contacto ya está configurado en este documento." + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Representan las diferentes categorías de cosas por hacer (por ejemplo, " +"\"llamar\" o \"enviar correo electrónico\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Estado de la miniatura" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Consejo: configure su escáner para enviar todos los documentos a esta " +"dirección." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Consejo: conviértase en una empresa libre de papel" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Por validar" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Por validar" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Hoy" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Alternar favorito" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Información sobre herramientas" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Papelera" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "Gestión de basura" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Es True si podemos editar el archivo adjunto del enlace." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tipo" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Tipo de la actividad de excepción registrada." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"Parece que la URL %s no está completa ya que no inicia con http(s):// o " +"ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "Imagen de la vista previa de la URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "Acción no disponible." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Desbloquear" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Sin nombre" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Desanclar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Subir" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Suba un archivo o arrástrelo aquí." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Subir solicitud de archivo" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Usuario" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "Usuario de acceso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Permiso del usuario" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "IVA" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Validado" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Videos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Visor" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"¿Quiere convertirse en una empresa libre de papel? Descubra la " +"aplicación Documentos de Odoo." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Mensajes del sitio web" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Historial de comunicación del sitio web" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Semanas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "¿Qué desea hacer con las páginas restantes?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"Procesó 6 documentos en cuestión de segundos, ¡increíble!
    Completamos el" +" recorrido, ahora intente subir sus propios documentos." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Usted" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "No tiene permitido archivar o desarchivar documentos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "No tiene permitido fijar o desfijar carpetas" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" +"No puede cambiar quién es el propietario de documentos que no le pertenecen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "No puede borrar todos estos elementos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "No tiene permitido ejecutar acciones incorporadas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "No puede realizar esta operación." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "No tiene permitido fijar o retirar acciones incrustadas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "No puede escribir en esta carpeta." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Puede subir un archivo desde su computadora o copiar y pegar un enlace de " +"internet a su archivo." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "No puede fijar acciones para esa carpeta." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "No puede fijar una acción a ese documento." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "No puede fijar ese tipo de acción." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" +"No puede actualizar el acceso de un atajo, en su lugar, actualice el " +"objetivo." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "No puede acceder a folder_id." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "No puede crear atajos en o mover documentos a esta carpeta especial." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "No puede acceder a las carpetas que están en la papelera." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "No puede cambiar a quién le pertenecen documentos que no son suyos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "No puede borrar las etiquetas que se usen en acciones del servidor." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "No puede duplicar documentos que estén en la papelera." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "No puede mover carpetas o archivos si están en la papelera." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "No puede quitar este contacto." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "No puede compartir varios documentos al mismo tiempo" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" +"No tiene los permisos de acceso suficientes para borrar estos documentos." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" +"No tiene los permisos de acceso para mover los documentos a esa carpeta." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" +"Debe estar en un espacio de trabajo específico con permisos de escritura " +"para subir archivos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "Su función: %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "Su espacio individual." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "seudónimo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "bytes" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "días." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "documentos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "Por ejemplo, hablar sobre la propuesta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "Por ejemplo, finanzas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "Por ejemplo, Gasto faltante" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "Por ejemplo, Por validar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "Por ejemplo, https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "Por ejemplo, miempresa.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "archivos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "carpeta " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "carpetas," + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "elementos seleccionados" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "seleccionar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "compartió un documento con usted.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "compartió una carpeta con usted.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "compartido por" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "compartió este documento con usted:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "compartió este documento con usted:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "Código del estado: %(status)s, mensaje: %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "sin nombre" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" URL" diff --git a/addons_extensions/documents/i18n/et.po b/addons_extensions/documents/i18n/et.po new file mode 100644 index 000000000..46bfc8d50 --- /dev/null +++ b/addons_extensions/documents/i18n/et.po @@ -0,0 +1,3754 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Maidu Targama , 2024 +# Egon Raamat , 2024 +# Martin Aavastik , 2024 +# Katrin Kampura, 2024 +# Patrick-Jordan Kiudorv, 2024 +# Rivo Zängov , 2024 +# Helen Sulaoja , 2024 +# Algo Kärp , 2024 +# Arma Gedonsky , 2024 +# Martin Trigaux, 2024 +# Siim Raasuke, 2024 +# Stevin Lilla, 2024 +# Piia Paurson , 2024 +# Eneli Õigus , 2024 +# JanaAvalah, 2024 +# Mihkel avalah, 2024 +# Leaanika Randmets, 2024 +# Triine Aavik , 2024 +# Anna, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Anna, 2024\n" +"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s lukustatud)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "Võib-olla soovite kasutada kinnitamise toimingut." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (koopia)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (järelejäänud leheküljed)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s failid" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s Kaustad" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s dokumendid" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s faili pole liigutatud, sest nad on teise kasutaja poolt lukustatud" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s uus dokument loodud" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%slehekül(g)jed kustutatud" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s jagatud sinuga" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +"Skaneeritud failid ilmuvad automaatselt sinu tööruumi. Seejärel saad oma " +"dokumente korraga töödelda, kasutades jagamistööriista: käivita kasutaja " +"määratud tegevused, taotle allkirja, teisenda dokumente hankijate arvete " +"jaoks AI abil jne." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1 Fail" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1 Kaust" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1 dokument" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Nõuanne: Alusta paberivaba ettevõtlusega" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Eemaldage see leht, kuna esmalt on vaja kõik arved läbi töötada." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Vali see leht, et jätkata." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Tootja" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " Laadi kõik alla" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " Lae alla fail" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " Faili eelvaade" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Laadi üles" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " Asenda fail" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Dokumendid" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Seotud
    Kirje
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Dokumendipäring" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;Dokumendid." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Päring" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Dokumendipäring" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Pythoni sõnastik, mida hinnatakse vaikimisi väärtuste määramiseks uute " +"kirjete loomiseks sellele aliasele." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Ligipääs" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Ligipääsu viga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Ligipääsu võti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Tegevus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Vajalik toiming" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Aktiivne" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Tegevused" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Tegevus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Tegevuse erandlik kohendus" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Tegevusplaanid" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Tegevuse staatus" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tegevuse tüüp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Tegevustüübi ikoon" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Tegevuste tüübid" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Tegevuse tüüp" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Lisa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Lisa fail" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "Lisa kaust" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "Lisa Arve silt" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "Lisa Kinnitatud silt" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Lisa URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Lisa uus fail" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Lisa isik(ud) või e-maili aadress(id)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "Lisa inimesed või e-posti aadressid:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "Lisa otsetee" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "Lisa täht" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "Täiendavad dokumendid, millele sul on juurdepääs." + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administraator" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Reklaamid" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Turvakontakti alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Domeeni alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Domeeni alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Aliase e-mail" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Aliase nimi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Aliase staatus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "Alias sildid" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Aliase staatust hinnati viimase vastuvõetud sõnumi põhjal." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Aliase mudel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Kõik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "Luba ligipääs" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Lihtne moodus sissetulevate meilide haldamiseks on seadistada skänner " +"selliselt, et PDFid saadetakse" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Lihtne moodus sissetulevate meilide haldamiseks on seadistada oma skännerid " +"selliselt, et PDFid saadetaks teie tööala e-mailile. Skännitud failid " +"ilmuvad automaatselt teie tööalale. Seejärel töötage korraga läbi oma " +"dokumente, kasutades poolitamise tööriista: käivitage kasutajaga määratud " +"tegevusi, taotlege allkirju, konverteerige tarnija arveid AI abil ümber jne." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Esines tõrge faili laadimisel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Igaüks, kellel on link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Arhiveeri originaalfail(id)." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Kas olete kindel, et soovite kustutada fokuseeritud leheküljed?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Kas olete kindel, et soovite kustutada valitud lehekülje(d)?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Olete kindel, et soovite seda lehte kustutada?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "Kas olete kindel, et soovite kustutada jäädavalt selle dokumendi?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "Kas olete kindel, et soovite kustutada jäädavalt need dokumendid?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Kuna see PDF sisaldab mitut dokumenti, poolitame ja töötleme faile korraga." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Manus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Manuste arv" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Manuse kirjeldus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Manuse nimi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Manuse tüüp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Arve" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Tühi leht" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Brošüürid" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "Faili defineerides genereevad üleslaadimise tegevused dokumendi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Tühista" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Kontrollsumma/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Alam" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Vali, millega soovid siduda" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Valige või seadistage e-posti server" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Vajutage kaardile dokumendi valimiseks." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Vajutage pildile dokumendi eelvaatesaamiseks." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Vajutage lehe eraldajale: me ei soovi poolitada neid kahte lehte, " +"kuna nad kuuluvad sama dokumendi alla." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Vajuta ristile, et sulgeda eelvaade." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Sulge" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Sulge poolitamise tööriist" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Värv" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Ettevõte" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Seadistused" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Seaded" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Seadista" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Lepingud" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Kontrollpaneeli nupud" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Kopeeri link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "Kopeeri lingid" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Loo tegevus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "Loo otsetee" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Loo uus tegevus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "Loo uus kontakt \"" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Loodud (kelle poolt?)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Loomise kuupäev" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Kohandatud automaatsõnum" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "päevad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Vaikeväärtused" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" +"Prügikastis olevate dokumentide täieliku kustutamise viivitus (päevades) " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Kustuta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Kustuta fokuseeritud või valitud leheküljed" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Kustuta jäädavalt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Viivitus kustutamises" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Viivitus kustutamises" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Viivitus kustutamises (päevades)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Ei kasutata enam" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Üksikasjad" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Loobu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Kuvatav nimi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" +"Soovite väljuda ilma salvestamata või koondada leheküljed ühte dokumenti? " + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "Dokument / Partner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Dokumendi arv" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Dokumendi nimi" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Dokumendi plaanid" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "Dokumendi ümbersuunamine" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Dokumendipäring" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Dokumenditaotlus {{ object.name != False ja ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Dokumentide allalaadimise meeldetuletus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Dokumendi eelvaade" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Dokument: Dokumendi taotlus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumendid" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Dokumendi linkimine kirjega" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Documents creation mixin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Tehtud" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Tehtud!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Laadi alla" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "Lae alla #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Laadige kõik failid alla" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Laadige file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Mustand" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Pane oma fail üleslaadimiseks siia" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Tähtaeg" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tähtaja liik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Tee koopia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Muuda" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Veebiredaktor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "E-posti alias" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "E-maili aliased" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "E-posti koopia" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Meili domeen nt. „example.com” aadressil „odoo@example.com”" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Viga" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Välju eelvaatest/Tühista valik/Loobu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Välju poolitamise tööriistast " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Välju salvestamata" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Kulu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Kehtib kuni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Eksport" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "Lisakommentaarid.." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Lemmik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Fail" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Faili sisu (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Faili sisu (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Faililaiend " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Faili suurus" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Faili voogesituse abimudel kontrollerite jaoks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Failid" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Faili koondamine" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "Failid liigutatakse prügikasti ja kustutatakse jäädavalt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "Failid saadetakse prügikasti ja kustutakse igaveseks pärast %s päeva." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Finants" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Maksualane" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Fokuseeri esimene lehekülg järgmisest grupist" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Fokuseeri esimene lehekülg eelmisest grupist" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Fokuseeri järgmisele leheküljele" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Fokuseeri eelmisele leheküljele" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Kaust" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Jälgijad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Jälgijad(Partnerid)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font awesome icon nt. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Koondage ühte dokumenti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Üldine" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Rühmitamine" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "Personal" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "On sõnum" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Ajalugu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Avaleht" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"Algse kirje ülem ID, millele kuulub alias (nt: projekt, millele kuulub " +"ülesande loomise alias)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "sümbolit." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ikoon, mis näitab erandi tegevust." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Kui kontrollitud, siis uued sõnumid nõuavad Teie tähelepanu." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Kui valitud, on mõningate sõnumitel saatmiserror" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Kui määratud, saadetekse see sisu vaikimisi sisu asemel automaatselt " +"lubamatutele kasutajale." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Pildid" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "Teiste rakenduste poolt kasutatavaid kaustu ei saa kustutada" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "Partnereid ei ole võimalik korraga mitmele dokumendile lisada." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"Järgmisi üksusi ei ole võimalik liigutada, kuna see tekitaks rekursiivse hierarhia:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "Juurdepääsmatu" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Postkast" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" +"Valed väärtused. Kasuta järgmisi väärtusi järgmistes väljade puhul: " +"%(hints)s." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indekseeritud sisu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Ettevõttesisene kasutajad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Muudetav manus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "On lemmikutesse lisatud" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "On jälgija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "on mitmeleheline" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "Esemed prügikastis kustutatakse igaveseks pärast %s päeva. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" +"Esemed, mis on liigutatud prügikasti, kustutatakse igaveseks pärast %s " +"päeva. " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Õiguslik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Haldame teie postkasti dokumente.
    Nipp: Kasutage dokumentide " +"filtreerimiseks ja struktureerimiseks silte." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Töötleme need arved läbi: saada Finants tööalale." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Töötleme selle dokumendi läbi meie skänneri." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Märgime selle arve ära kui õiguslik
    Nipid: tegevused saavad olla " +"tööalale vastavalt olla loodud teie protsessile sobivalt." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Link" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "Lingi juurdepääs peidetud" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "Lingi juurdepääsuõigused" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "Lingi URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Link kopeeritud lõikelauale!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "Link kopeeritud lõikelauale!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "Link kopeeritud lõikelauale!" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Lokaalne osa, mis põhineb sissetulevate tuvastamisel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Lukusta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Lukustatud" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Lukustatud" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Kirjuta logimärkus..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Sisselogimine" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Logi välja" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "E-kiri: %s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "Märgi tegevused lõpetatuks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "Liida PDF-id" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Sõnum" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Sõnumi saatmise veateade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Sõnum" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Failitüüp" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "Puudub dokumentide viide." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Mudel" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Mudelid" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Kuud" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Liiguta see leht prügikasti." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Liiguta prügikasti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Liiguta prügikasti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "Liiguta prügikasti? " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Tõstetud prügikasti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "Peab sisaldama juurdepääsu linki." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Minu tegevused" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Minu tegevuse tähtaeg" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Minu dokumendid" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nimi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "Nimi / Laiend" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Uus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Uus fail" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "Uus kaust" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Uus grupp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Järgmine tegevus kalendris" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Järgmise tegevuse tähtaeg" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Järgmise tegevuse kokkuvõte" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Järgmise tegevuse tüüp" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Tegevustüüpe ei leitud. Loome ühe!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "Alias pole seadistatud" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Ühtegi dokumenti pole valitud" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "Üksust ei ole valitud" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "Keegi internetis ei pääse juurde" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Jagatud linke ei ole" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Pole" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Ei ole fail" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "Ei ole kaust" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Ei ole lisatud" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Märkus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Teavita" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Tegevuste arv" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Vigade arv" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Tegevust nõudvate sõnumite arv" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Veateatega sõnumite arv" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo Veebileht" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Vanemad" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Seose (kirje) valikuline ID, mille külge lisatakse kõik sissetulevad " +"sõnumid, isegi kui sellele ei vastatud. Kui määratud, siis kaob täielikult " +"võimalus luua uusi kirjeid." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Või saada meilid" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Muu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Omanik" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Omanik: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "Omanik: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "Omanik: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Ülemkaust" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Ülemmudel" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Põhiliin" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Ülemkirje seose ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Ülemmudel, millel on alias. Aliase mudeli viide ei pruugi olla mudel, mis on" +" antud nii: alias_model_id (näide: projekt (ülem_mudel) ja ülesanne (mudel))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Osaline üleviimine" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Kontakti kaart" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Kinnita" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" +"Palun logi sisse või võta lisateabe saamiseks ühendust inimesega, kes seda " +"linki jagas." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Dokumendil sõnumite postitamise reeglid mailgateway'd kasutades.\n" +"- igaüks: igaüks saab postitada\n" +"- partnerid: ainult autenditud partnerid\n" +"- jälgijad: ainult dokumendiga seotud jälgijad või nende kanalite liikmed\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Kohal" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Esitlused" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Projekt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Hinnangud" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Hiljutine" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "Hiljuti avatud dokumendid." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Kirje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Kirje seose ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Järelejäänud leheküljed" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Meeldetuletav e-kiri on saadetud." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Meeldetuletus, et laeksid üles enda dokumendid {{ object.name and ' : ' + " +"object.name or '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "Eemalda juurdepääs" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Eemalda liige" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "Eemalda silt Postkast" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "Eemalda silt Kinnitamiseks" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "Eemalda kõik sildid" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "Eemalda täht" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Nimeta ümber" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Päring" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Taotle tegevust" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Esita päring" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Esitage dokumendipäring" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Esitage failipäring" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "Nõutud" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Dokumendipäring" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Küsitud dokumendid" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "Dokumendi küsija partner" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Res Mudeli Nimi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Ressursi ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Ressursimudel" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Ressursi nimi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Vastutaja" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Vastutav kasutaja" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Taasta" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Piiratud" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Piiratud kaust" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Roll" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Sõnumi kohaletoimetamise viga" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Müük" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Salvesta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "Esmalt salvesta või loobu muudatustest." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "Salvestamine.." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Vali kõik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Vali fokuseeritud leheküljed" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Vali järgmine lehekülg" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Vali järgmine lehekülg grupist" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Vali eelmine lehekülg" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Vali eelmine lehekülg grupist" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Vali/välista kõik leheküljed" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Saada" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "Saada finantsosakonda" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "Saada see kiri juriidilisse osakonda, valides õiged sildid" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Saadetakse partnerile, kui temalt dokumenti küsitakse." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Jada" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "Määra tegevused" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Seadke kustutamisviivitus dokumentidele prügikastis" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "Määra aegumiskuupäev" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Seadke meeldetuletus, et teavitada kasutajaid, kes pole laadinud üles nõutud" +" dokumente" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Seaded" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Jaga" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "Jaga: %(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "Jagatud minuga" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "Jagamine.." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Otsetee" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "Otsetee loodud" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "Otsetee loodud minu kausta." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "Otseteid saab luua ainult ühekaupa." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "Otseteed ei saa sihtdokumenti muuta." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "Otseteed ei saa sisaldada dokumente" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Suurus:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" +"Mõningaid dokumente polnud võimalik üles laadida (lubatud suurus: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Alusdokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "Erikausta ei saa jagada" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Poolita" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Poolita PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "Poolita kõik valged lehed" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Poolita valitud leheküljed" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Tähistatud" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Tegevuspõhised staatused\n" +"Üle aja: Tähtaeg on juba möödas\n" +"Täna: Tegevuse tähtaeg on täna\n" +"Planeeritud: Tulevased tegevused." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Jää siia" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Struktuur" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Kokkuvõte" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Silt" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Sildi nimi" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "Sildi nimi on juba kasutusel" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Sildid" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Tekst" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "Tekst, mida kuvatakse, kui liigutad hiire selle sildi kohale." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "Kustutamise viivitus peab olema positiivne" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "Dokumendi URL on kopeeritud lõikelauale." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "Dokument on liigutatud." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"Järgnevatel dokumentidel ei saa olla aliast: \n" +" - %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"Järgnevad dokumendid/kaustad ei saa kuuluda portaali kasutajale: \n" +" - %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "Järgnevatel dokumentidel/otseteedel on tüübi vastuolu: \n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Aliasele vastav mudel (Odoo dokumendi laadi). Iga sissetulev kiri, mis ei " +"vasta olemasolevale kirjele, põhjustab uue mudeli kirje loomise (nt projekti" +" ülesanne)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"E-maili aliase nimi, nt \"job\" kui soovid saada e-kirju " +"" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "See kuu" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "See nädal" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "See toiming ei eksisteeri." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "See manus on juba dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "Seda dokumenti ei eksisteeri või see ei ole avalikult kättesaadav." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Selle dokumendi kohta on esitatud päring..\n" +" Laadige see üles." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "See dokument on taastatud." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "See fail on saadetud prügikasti ja kustutatakse jäädavalt %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "Seda kausta ei eksisteeri." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "See on otsetee" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "See partner on juba selle dokumendiga seotud." + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Need esindavad erinevaid tegevuste kategooriaid, mida peate tegema (nt " +"\"Helista\" või \"Saada e-mail\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Pisipilt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Pisipildi staatus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Vihje: konfigureerige oma skanner nii, et kõik dokumendid saadetakse sellele" +" aadressile." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Nipp: Hakake paberivabaks ettevõtteks" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Kinnitada" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Kinnitada" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Täna" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Vali lemmik" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Vihje" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Prügikast" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Tõene, kui saame muuta lingi manust." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tüüp" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Kirjel oleva erandtegevuse tüüp." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"URL %s ei paista olevat terviklik kuna see ei alga http(s):// või ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "URL Eelvaade" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Lukusta lahti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Nimetu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Eemalda kinnitus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Üleslaadimine" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Laadige fail või lohistage see siia." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Lae üles faili päring" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Kasutaja" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "Kasutaja ligipääsu roll" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Kasutajaõigused" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "KMKR" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Kinnitatud" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Videod" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Ülevaataja" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Soovite hakata paberivabaks ettevõtteks? Avastame Odoo Dokumendid." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Veebilehe sõnumid" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Veebilehe suhtluse ajalugu" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Nädal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "Mida soovid teha ülejäänud lehtedega?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"Vau... 6 dokumenti töödeldi mõne sekundiga, oled tubli.
    Tuuri lõpp. " +"Proovi nüüd oma dokumente üles laadida." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Teie" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "Sul ei ole luba dokumente arhiveerida või arhiveerimist tühistada." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "Sul ei ole luba kaustu kinnitada või kinnitamist tühistada." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "Sul ei ole luba muuta dokumentide omanikku, mida sa ise ei oma." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "Sul ei ole luba kõiki neid üksusi kustutada." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "Sul ei ole luba seda toimingut teha." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "Sul ei ole luba sellesse kausta kirjutada." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Saate faili üles laadida oma arvutisse või kopeerida/kleepida veebilehe " +"lingi oma failile." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "Selles kaustas ei saa tegevusi kinnitada." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "Sellele dokumendile ei saa tegevust kinnitada" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "Seda tüüpi tegevust ei saa kinnitada." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "Sul ei ole sellele kaustale (folder_id) juurdepääsu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "Sellesse erikausta ei saa otseteid luua ega dokumente liigutada." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "Serveritoimingutes kasutatavaid silte ei saa kustutada." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "Prügikastis olevaid dokumente ei saa duplikeerida." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "Seda partnerit ei saa eemaldada" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "Sa ei saa jagada mitut dokumenti korraga" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "Sul ei ole piisavaid õigusi nende dokumentide kustutamiseks." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "Sul ei ole õigusi dokumentide liigutamiseks sellesse kausta." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "Sinu roll: %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "Sinu isiklik ruum." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "alias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "päevad." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "dokument," + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "dokumendid" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "nt aruta ettepanekut" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "nt. Finants" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "nt. Kulu puudub" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "nt. Kinnitamiseks" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "nt. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "nt. mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "failid" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "kaust" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "kaustad," + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "ainult_lugemiseks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "vali" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "jagatud" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "nimetu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "URL" diff --git a/addons_extensions/documents/i18n/fa.po b/addons_extensions/documents/i18n/fa.po new file mode 100644 index 000000000..6cdbd9545 --- /dev/null +++ b/addons_extensions/documents/i18n/fa.po @@ -0,0 +1,2889 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Faraz Sadri Alamdari , 2023 +# Zahed Alfak , 2023 +# Farid Hariri , 2023 +# Mohammad Tahmasebi , 2023 +# Mohsen Mohammadi , 2023 +# M.Hossein S.Farvashani , 2023 +# Maziar Niaki , 2023 +# سید محمد آذربرا , 2023 +# Hamid Darabi, 2023 +# Martin Trigaux, 2023 +# Hanna Kheradroosta, 2023 +# Hamed Mohammadi , 2023 +# fardin mardani, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2022-09-22 05:46+0000\n" +"Last-Translator: fardin mardani, 2023\n" +"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr ", منقضی می‌شود در" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "1402" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "بایت" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "این صفحه را لغو انتخاب کنید زیرا قصد داریم ابتدا همه صورتحساب ها را پردازش کنیم." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "گیگابایت" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "کیلوبایت" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "مگابایت" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    قدرت گرفته از" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr " دانلود همه" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr " دانلود" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr " رفتن به URL" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "یک دیکشنری پایتون که برای فراهم کردن مقادیر پیش‌فرض هنگام ایجاد رکوردهای جدید برای این نام مستعار مورد ارزیابی قرار می‌گیرد." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "مجموعه ای از شرایط و اقداماتی که برای همه پیوست های منطبق با شرایط در دسترس خواهد بود" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "دسترسی" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "خطای دسترسی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "گروه‌های حق دسترسی" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "سطوح دسترسی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "توکن دسترسی" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "عمل" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "نام کنش" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "اقدام مورد نیاز است" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "کنش‌ها" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "فعال" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "فعالیت ها" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "فعالیت" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "دکوراسیون استثنایی فعالیت" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "وضعیت فعالیت" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "نوع فعالیت" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "آیکون نوع فعالیت" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "نوع فعالیت" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "افزودن" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "افزودن پرونده" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "افزودن URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "افزودن لینک" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "افزودن پرونده جدید" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "مدیر" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "تبلیغات" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "مستعار" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "مستعار تماس امنیتی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "نام مستعار" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "دامین مستعار" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "مدل استعاری" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "همه فایل ها آپلود شد" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "بایگانی" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "بایگانی شده" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "از آنجایی که این PDF حاوی چندین سند است، بیایید به صورت انبوه تقسیم و پردازش کنیم." + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "درخواست اعتبار سنجی" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "دارایی ها" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "پیوست به" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "پیوست" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "تعداد پیوست ها" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "نام پیوست" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "صورتحساب" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "برند 1" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "برند 2" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "با تعریف یک پوشه، فعالیت های آپلود، یک سند ایجاد می کند" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "می تواند آپلود کند" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "لغو" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "تمام اسناد داخلی خود را دسته بندی کنید، به اشتراک بگذارید و پیگیری کنید." + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "دسته بندی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "برای انتخاب سند روی کارت کلیک کنید." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "برای پیش نمایش سند روی تصویر کوچک کلیک کنید." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "روی جداکننده صفحه کلیک کنید: ما نمی‌خواهیم این دو صفحه را جدا کنیم زیرا به یک سند تعلق دارند." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "بستن" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "شرکت" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "شرایط" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "پیکربندی" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "مخاطب" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "محتوی" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "قراردادها" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "دکمه‌های کنترل پنل" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "ایجاد" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "ایجادشده در" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "تاریخ ایجاد" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "پیام برگشتی سفارشی" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "روز" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "مقادیر پیش فرض" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "حذف" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "منسوخ کردن" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "مستهلک شده" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "توصیف" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "رها کردن" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "سند" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "نام سند" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "اسناد" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "فضای کار اسناد" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "دامنه" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "دانلود" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "ویرایش" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "مستعار ایمیل" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "ایمیل سی سی" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "خطا" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "هزینه" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "منقضی شده" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "مورد علاقه از" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "پرونده" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "محتوای فایل (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "حجم فایل" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "متمرکز سازی فایل ها" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "امور مالی" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "مالی" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "سال مالی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "پوشه" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "دنبال کنندگان" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "پیروان (شرکاء)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "آیکون فونت عالی به عبارتی fa-tasks" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "فعالیت های آینده" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "گروه‌بندی برمبنای" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "منابع انسانی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "آیا دارای پیام است" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "تاریخچه" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "شناسه" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "شناسه رکورد والد حاوی نام مستعار (مثال: پروژه دارای نام مستعار ایجاد وظیفه)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "شمایل" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "آیکون برای نشان دادن یک فعالیت استثنا." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "اگر این گزینه را انتخاب کنید، پیام‌های جدید به توجه شما نیاز خواهند داشت." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "اگر علامت زده شود، برخی از پیام ها دارای خطای تحویل هستند." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "در صورت تنظیم، این محتوا به‌جای پیام پیش‌فرض، به‌طور خودکار برای کاربران غیرمجاز ارسال می‌شود." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "تصاویر" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "صندوق پستی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "محتوای ایندکس شده" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "داخلی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "آیا دنبال می کند" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "دانش" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "آخرین تغییر توسط" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "آخرین بروز رسانی در" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "فعالیتهای اخیر" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "بیایید اسناد را در صندوق ورودی خود پردازش کنیم.
    نکته: از برچسب‌ها برای فیلتر کردن اسناد و ساختار فرآیند خود استفاده کنید." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "بیایید این سند را که از اسکنر ما آمده است پردازش کنیم." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "لینک" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "زنده" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "قفل" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "قفل شده" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "ثبت یادداشت..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "ورود به سیستم" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "خروج" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "علامت گذاری به عنوان پیش‌نویس" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "علامت گذاری همه به عنوان انجام شد" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "بازاریابی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "خطای تحویل پیام" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "پیام ها" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "نوع MIME" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "متفرقه" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "مدل" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "مدل ها" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "ماه" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "انتقال به صندوق ورودی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "موعد نهای فعالیت من" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "اسناد من" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "علایق من" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "نام" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "جدید" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "فایل جدید" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "گروه جدید" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "رویداد تقویم فعالیت بعدی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "موعد فعالیت بعدی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "خلاصه فعالیت بعدی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "نوع فعالیت بعدی" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "هیچ سندی انتخاب نشده است" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "فایل نیست" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "پیوست نشده است" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "یادداشت" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "تعداد اقدامات" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "تعداد خطاها" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "تعداد پیام ها که نیاز به عمل" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "تعداد پیامهای با خطای تحویل" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "لوگوی اودو" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "شناسه اختیاری یک موضوع (رکورد) که تمام پیام‌های دریافتی به آن پیوست می‌شود، حتی اگر به آن پاسخ نداده باشند. اگر تنظیم شود، ایجاد رکوردهای جدید به طور کامل غیرفعال می شود." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "دیگر" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "مالک‌" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "مدل والد" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "مسیر مادر" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "شناسه موضوع رکورد والد" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "مدل والد دارای نام مستعار. مدلی که مرجع نام مستعار را نگه می دارد لزوماً مدلی نیست که توسط alias_model_id (مثال: پروژه (parent_model) و task (model)) ارائه شده است." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"خط مشی ارسال پیام در سند با استفاده از mailgateway.\n" +"- همه: همه می توانند پست کنند\n" +"- شرکا: فقط شرکای تأیید شده\n" +"- دنبال کنندگان: فقط دنبال کنندگان سند مرتبط یا اعضای کانال های زیر\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "حاضر" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "ارائه‌ها" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "پروژه" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "دسترسی خواندن" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "رکورد" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "شناسه موضوع رکورد" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "صفحات باقیمانده" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "حذف" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "جایگزین" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "درخواست" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "درخواست سند" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "درخواست شده" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "سند درخواست شده" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "شناسه منبع" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "مدل منبع" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "نام منبع" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "پاسخگو" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "کاربر مسئول" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "بازگردانی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "خطای تحویل پیامک" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "فروش ها" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "ذخیره" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "برنامه ریزی فعالیت" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "این نامه را با اختصاص برچسب های مناسب به بخش حقوقی ارسال کنید." + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "ارسال به حقوقی" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "دنباله" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "تنظیمات" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "اشتراک‌گذاری" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "اشتراک گذاری لینکها" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "اشتراک گذاری لینک ها" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "به اشتراک گذاشته شده" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "تمام رکوردهایی که تاریخ اقدام بعدی آن قبل از امروز است را نشان بده" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "اندازه" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "جدا کردن" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "وضعیت" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"وضعیت بر اساس فعالیت ها\n" +"سررسید: تاریخ سررسید گذشته است\n" +"امروز: تاریخ فعالیت امروز است\n" +"برنامه ریزی شده: فعالیت های آینده." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "فضاهای کاری فرعی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "خلاصه" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "برچسب" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "دسته بندی برچسب‌ها" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "نام تگ" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "برچسب از قبل برای این جنبه وجود دارد" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "برچسب‌ها" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "قالبها" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "متن" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "مدلی (Odoo Document Kind) که این نام مستعار با آن مطابقت دارد. هر ایمیل دریافتی که به سابقه موجود پاسخ نمی‌دهد باعث ایجاد یک رکورد جدید از این مدل می‌شود (به عنوان مثال یک وظیفه پروژه)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "نام مستعار ایمیل، به عنوان مثال 'jobs'. اگر می خواهید ایمیل های را دریافت کنید" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "صاحب رکورد ایجاد شده با دریافت ایمیل در این نام مستعار. اگر این فیلد تنظیم نشود، سیستم تلاش می‌کند تا مالک مناسب را بر اساس آدرس فرستنده (از) پیدا کند، یا اگر کاربر سیستمی برای آن آدرس یافت نشد، از حساب Administrator استفاده می‌کند." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "بند انگشتی" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "برای تایید" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "برای تایید" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "فعالیت های امروز" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "نوع" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "نوع فعالیت استثنایی برای رکورد." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "باز کردن قفل" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "بی نام" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "آپلود" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "بارگذاری سند" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "درخواست آپلود فایل" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "کاربر" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "ارزش افزوده" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "معتبر تا" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "تایید اعتبار" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "معتبر" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "ویدئوها" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "آیا می خواهید به یک شرکت بدون کاغذ تبدیل شوید؟ بیایید اسناد Odoo را کشف کنیم." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "پیام های وب سایت" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "تاریخچه ارتباط با وبسایت" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "هفته" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "اقدامات گردش کار" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "فضای کار" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "فضاهای کاری" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "وای... 6 سند در چند ثانیه پردازش شد، کا شما خوب است.
    تور کامل شد. اکنون اسناد خود را بارگذاری کنید." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "دسترسی نوشتن" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "می توانید یک فایل را از رایانه خود آپلود کنید یا یک لینک اینترنتی را در فایل خود کپی/پیست کنید." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "حذف" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "سند" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "اسناد" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "اسناد انتخاب شده" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "دانلود" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "به عنوان مثال، بحث در مورد پیشنهاد" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "مثال برای تایید" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "نام" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "بازگرداندن" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "انتخاب" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "انتخاب شده" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "بدون نام" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "url" diff --git a/addons_extensions/documents/i18n/fi.po b/addons_extensions/documents/i18n/fi.po new file mode 100644 index 000000000..6c5fb934b --- /dev/null +++ b/addons_extensions/documents/i18n/fi.po @@ -0,0 +1,3752 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tuomas Lyyra , 2024 +# Mikko Salmela , 2024 +# Tiffany Chang, 2024 +# Richard Mouthier (RMO) , 2024 +# Konsta Aavaranta, 2024 +# Mikko Virtanen , 2024 +# Veikko Väätäjä , 2024 +# Retropikzel, 2024 +# Jussi Lehto , 2024 +# Sari Mäyrä , 2024 +# Miika Nissi , 2024 +# Miku Laitinen , 2024 +# Johanna Valkonen , 2024 +# Sanna Edelman , 2024 +# Jenni Heikkilä , 2024 +# Kari Lindgren , 2024 +# Eino Mäkitalo , 2024 +# Svante Suominen , 2024 +# Mikko Närjänen , 2024 +# Martin Trigaux, 2024 +# Pekko Tuomisto , 2024 +# Tuomo Aura , 2024 +# Ossi Mantylahti , 2024 +# Jarmo Kortetjärvi , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2024\n" +"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (kopio)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (sivua jäljellä)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s tiedostoa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s tiedosto(t) ei ole siirretty, koska toinen käyttäjä on lukinnut ne" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s uudet asiakirjat on luotu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s sivut poistettu" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Skannatut tiedostot ilmestyvät automaattisesti työtilaan. Käsittele sitten" +" asiakirjoja massana jaetulla työkalulla: käynnistä käyttäjän määrittelemät " +"toiminnot, pyydä allekirjoitusta, muunna myyjän laskut tekoälyn avulla jne." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Vinkki: Ala paperittomaksi yritykseksi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Poista valinta tältä sivulta, koska aiomme käsitellä kaikki laskut " +"ensin." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Valitse tämä sivu jatkaaksesi." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Järjestelmää pyörittää" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr "Lataa omalle koneelle" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Asiakirjat" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Aiheeseen liittyvä
    Tietue
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Pyydetty asiakirja" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;Asiakirjat." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Pyyntö" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Pyydetty asiakirja" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Python-kirjasto, joka evaluoidaan oletusarvoja varten, kun tätä aliasta " +"varten luodaan uusia tietueita." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Käyttöoikeus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Käyttöoikeusvirhe" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Pääsytunniste" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Toiminto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Vaatii toimenpiteitä" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Aktiivinen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Toimenpiteet" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Toimenpide" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Toimenpiteen poikkeuksen tyyli" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Toimintasuunnitelmat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Toimenpiteen tila" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Toimenpidetyyppi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Toimenpiteen ikoni" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Toimenpiteiden tyypit" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Toimenpiteiden tyyppi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Lisää" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Lisää tiedosto" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Lisää URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Lisää uusi tiedosto" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Lisää ihmisiä tai sähköpostiosoitteita..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Ylläpitäjä" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Mainokset" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Aliaksen kontaktien tietoturva" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Alias Domain" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Alias Verkkotunnus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Alias Email" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Aliaksen nimi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Alias Status" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Aliaksen tila arvioituna viimeksi vastaanotetun viestin perusteella." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Aliasmalli" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Kaikki" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Helppo tapa käsitellä saapuvia sähköpostiviestejä on määrittää skannerisi " +"lähettämään PDF-tiedostoja osoitteeseen" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Helppo tapa käsitellä saapuvia sähköpostiviestejä on määrittää skanneri " +"lähettämään PDF-tiedostoja työtilan sähköpostiin. Skannatut tiedostot " +"ilmestyvät automaattisesti työtilaasi. Käsittele sitten asiakirjoja " +"irtotavarana jakotyökalulla: käynnistä käyttäjän määrittelemät toiminnot, " +"pyydä allekirjoitusta, muunna myyjän laskut tekoälyn avulla jne." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Latauksen aikana tapahtui virhe." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Kuka tahansa, jolla on linkki" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Arkistoi alkuperäinen tiedosto(t)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Oletko varma, että haluat poistaa kohteena olevan sivun?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Oletko varma, että haluat poistaa valitut sivut?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Oletko varma, että haluat poistaa tämän sivun?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "Haluatko varmasti poistaa asiakirjan pysyvästi?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "Oletko varma, että haluat poistaa asiakirjat pysyvästi?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Koska tämä PDF-tiedosto sisältää useita asiakirjoja, jaetaan ja käsitellään " +"ne joukkona." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Liite" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Liitteiden määrä" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Liitteen kuvaus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Liitteen nimi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Liitteen tyyppi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Lasku" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Tyhjä sivu" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Esitteet" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "Määrittelemällä kansio, lataustoiminnot luovat asiakirjan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Peruuta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Lapset" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Valitse yhdistettävä tietue" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Valitse tai määritä sähköpostipalvelimet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Valitse asiakirja napsauttamalla korttia." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Voit esikatsella asiakirjaa napsauttamalla pikkukuvaa." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Napsauta sivun erotinta: emme halua jakaa näitä kahta sivua, koska ne" +" kuuluvat samaan asiakirjaan." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Poistu esikatselusta klikkaamalla ristiä." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Sulje" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Sulje jaetut työkalut" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Väri" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Yritys" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Asetukset" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Asetukset" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Konfiguroi" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakti" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Sopimukset" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Ohjauspaneelin painikkeet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Kopioi linkki" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Luo aktiviteetti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Luo uusi toimenpide" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Luonut" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Luontipäivä" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Mukautettu palautettu viesti" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Päivää" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Oletusarvot" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" +"Viive sen jälkeen, kun asiakirja on poistettu pysyvästi roskakorista " +"(päivää)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Poista" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Poista tarkennetut tai valitut sivut" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Poista pysyvästi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Poistamisen viive" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Poistoviive" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Poistoviive (päivää)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Vanhentunut" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Tiedot" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Hylkää" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "Haluatko poistua tallentamatta tai koota sivut yhteen asiakirjaan?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Dokumentti" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Asiakirjojen määrä" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Dokumentin nimi" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Asiakirjasuunnitelmat" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Asiakirjapyyntö" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Asiakirjapyyntö {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Asiakirjapyyntö: Muistutus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Asiakirjan esikatselu" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Asiakirja: Asiakirjapyyntö" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumentit" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Asiakirjat Linkki tietueeseen" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Asiakirjojen luominen mixin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Valmis" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Valmista!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Lataa" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "Lataa #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Lataa kaikki tiedostot" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Lataa tiedosto" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Luonnos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Pudota lähetettävä tiedosto tähän" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Erääntyy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Erääntymisen tyyppi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Kopioi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Muokkaa" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Muokkaaja" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Sähköpostialias" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Sähköpostialiakset" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Sähköpostin kopio" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "" +"Sähköpostin verkkotunnus esim. 'example.com' kohdassa 'odoo@example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Virhe" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Poistu Esikatselu / Valinta / Valinnan poistaminen / Poistu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Lopeta Split Tools -työkalut" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Poistu tallentamatta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Kulu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Voimassaolo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Vienti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Suosikki" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Tiedosto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Tiedoston sisältö (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Tiedoston sisältö (raaka)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Tiedoston laajennus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Tiedostokoko" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Tiedoston suoratoistomalli ohjaimille" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Tiedostot" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Tiedostojen keskittäminen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" +"Tiedostot lähetetään roskakoriin ja poistetaan lopullisesti sen jälkeen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" +"Tiedostot lähetetään roskakoriin ja poistetaan lopullisesti %s päivän " +"kuluttua." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Taloushallinto" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Talous" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Keskity seuraavan ryhmän ensimmäiselle sivulle" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Keskity edellisen ryhmän ensimmäiselle sivulle" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Keskity seuraavalle sivulle" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Keskity edellinen sivu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Kansio" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Seuraajat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seuraajat (kumppanit)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font awesome -ikoni esim.. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Kerää yhteen asiakirjaan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Yleinen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Ryhmittely" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "Henkilöstöpalvelut" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Sisältää viestin" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Historia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Etusivu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"Ylätason aliastietueen id (esim. tehtävien luontiin käytettävän aliaksen " +"sisältävä projekti)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Kuvake" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Kuvake joka kertoo poikkeustoiminnosta." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Jos valittu, uudet viestit vaativat huomiotasi." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Jos valittu, joitakin viestejä ei ole toimitettu." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Jos asetettu, lähetetään automaattisesti luvattomille käyttäjille " +"oletusviestin sijasta." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Kuvat" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Saapuneet" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indeksoitu sisältö" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Sisäiset käyttäjät" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Onko muokattavissa oleva liite" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "On suosikki" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "On seuraaja" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "Pidetään monisivuisena" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" +"Roskakorissa olevat kohteet poistetaan lopullisesti %s päivän kuluttua." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" +"Roskakoriin siirretyt kohteet poistetaan lopullisesti %s päivän kuluttua." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Laillinen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Käsitellään saapuneet asiakirjat.
    Vinkki: Käytä tunnisteita " +"asiakirjojen suodattamiseen ja prosessin jäsentämiseen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Käsitellään nämä laskut: lähetetään taloushallinnon työtilaan." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Käsittelemme tätä skannerista tulevaa asiakirjaa." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Merkitään tämä posti lakiasioiden postiksi
    Vinkkejä: Toiminnot " +"voidaan räätälöidä prosessisi mukaan työtilan mukaan." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Linkki" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "Linkin URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Linkki kopioitu leikepöydälle!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Paikallisiin osiin perustuva saapuvien lähetysten havaitseminen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Lukitse" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Lukittu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Lukitsija" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Kirjaa muistiinpano..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Kirjaudu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Kirjaudu ulos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Viesti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Ongelma viestin toimituksessa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Viestit" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Mime-tyyppi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Malli" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Mallit" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Kuukaudet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Siirrä tämä sivu roskakoriin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Siirrä roskakoriin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Siirrä roskiin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "Siirtyä roskiin?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Siirretty roskakoriin" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Omat toimenpiteeni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Toimenpiteeni määräaika" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Omat tiedostot" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nimi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Uusi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Uusi tiedosto" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Uusi ryhmä" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Seuraavan toimenpiteen kalenterimerkintä" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Seuraavan toimenpiteen eräpäivä" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Seuraavan toimenpiteen kuvaus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Seuraavan toimenpiteen tyyppi" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Toimintatyyppejä ei löytynyt. Luodaan yksi!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "Ei määritettyä aliasta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Asiakirjaa ei ole valittu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Ei jaettuja linkkejä" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Ei mitään" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Ei tiedosto" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Ei liitetty" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Muistiinpano" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Ilmoita" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Toimenpiteiden määrä" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Virheiden määrä" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Toimenpiteitä vaativien viestien määrä" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Toimitusvirheellisten viestien määrä" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo Logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo-sivusto" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Vanhempi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Valinnainen sen viestiketjun (tietueen) ID, johon kaikki saapuvat viestit " +"liitetään, vaikka niihin ei vastattaisikaan. Jos tämä asetetaan, uusien " +"tietueiden luominen estetään kokonaan." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Tai lähetä sähköpostia osoitteeseen" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Muu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Omistaja" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Omistaja: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Ylempi kansio" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Ylätason malli" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Ylempi polku" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Ylätason keskustelun ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Aliaksen hallussa oleva emomalli. Alias-viittauksen sisältävä malli ei " +"välttämättä ole alias_model_id:llä annettu malli (esimerkki: project " +"(parent_model) ja task (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Osittainen siirto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Kumppani" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Pin" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Käytäntö, jolla lähetetään viesti asiakirjaan mailgatewayn avulla.\n" +"- everyone: kaikki voivat lähettää viestin\n" +"- partners: vain todennetut kumppanit\n" +"- seuraajat: vain asiaan liittyvän asiakirjan seuraajat tai seuraavien kanavien jäsenet\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Paikalla" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Esitykset" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Projektit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Arviointi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Viimeisin" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Tietue" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Tietueen keskustelun ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Jäljellä olevat sivut" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Muistutussähköpostit on lähetetty." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Muistutus asiakirjan lataamisesta{{ object.name and ' : ' + object.name or " +"'' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Poista käyttäjä" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Uudelleennimeä" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Pyyntö" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Pyynnön toiminta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Pyyntö osoitteeseen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Pyydä asiakirjaa" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Pyydä tiedostoa" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Pyydetty\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Pyydetty asiakirja" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Pyydetyt asiakirjat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Res Mallin nimi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Resurssin tunnus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Tietomalli" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Resurssin nimi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Vastuuhenkilö" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Vastuuhenkilö" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Palauta" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Rajoitettu" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Rajoitettu kansio" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Rooli" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Tekstiviestin toimitusvirhe" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Myynti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Tallenna" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Valitse kaikki" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Valitse fokusoitu sivu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Valitse seuraava sivu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Valitse ryhmän seuraavat sivut" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Valitse edellinen sivu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Valitse ryhmän edelliset sivut" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Kaikkien sivujen valitseminen/poistaminen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Lähetä" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Lähetä tämä kirje oikeudelliselle osastolle antamalla oikeat tunnisteet." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Lähetetään kumppanille, kun häneltä pyydetään asiakirjaa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Järjestys" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Aseta poistoviive roskakorissa oleville asiakirjoille" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Aseta toiminnoissa muistutuksia, joilla ilmoitetaan käyttäjille, jotka eivät" +" ole ladanneet pyydettyä asiakirjaa" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Asetukset" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Jaa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Oikotie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Koko:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Joitakin tiedostoja ei voitu ladata (enimmäiskoko: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Lähde" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Jaa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Jaa PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Valittujen sivujen jakaminen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Tähdelliset" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Tila aktiviteetin perusteella\n" +"Myöhässä: Eräpäivä on menneisyydessä\n" +"Tänään: Eräpäivä on tänään\n" +"Suunniteltu: Tulevaisuudessa." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Pysy täällä" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Rakenne" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Yhteenveto" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Tunniste" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Tunnisteen nimi" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Tunnisteet" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Teksti" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "Poistoviiveen pitää olla positiivinen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Malli (Odoo Document Kind), jota tämä alias vastaa. Kaikki saapuvat " +"sähköpostiviestit, jotka eivät vastaa olemassa olevaan tietueeseen, " +"aiheuttavat uuden tietueen luomisen tähän malliin (esim. projektitehtävä)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Sähköpostin aliaksen nimi, esim. 'jobs', jos haluat saada sähköposteja " +"osoitteeseen " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Kuluva kuukausi" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Tällä viikolla" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Tämä liite on jo asiakirja" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Tätä asiakirjaa on pyydetty.\n" +" Lataa se." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "Tämä tiedosto on lähetetty roskakoriin ja poistetaan lopullisesti %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Ne edustavat eri luokkia, joissa sinun on tehtävä asioita (esim. \"Soita\" " +"tai \"Lähetä sähköpostia\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Pikkukuva" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Pienoiskuvan tila" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Vihje: määritä skanneri lähettämään kaikki asiakirjat tähän osoitteeseen." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Vinkki: Ryhdy paperittomaksi yritykseksi" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Vahvistettavaksi" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Vahvistettava" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Tänään" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Kytke suosikki päälle ja pois päältä" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Työkaluvinkki" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Roskakori" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Totta, jos voimme muokata linkin liitetiedostoa." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tyyppi" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Poikkeusaktiviteetin tyyppi tietueella." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"URL-osoite %s ei vaikuta täydelliseltä, koska se ei ala http(s):// tai " +"ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "URL Esikatselukuva" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Avaa lukitus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Nimetön" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Poista kiinnitys" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Lähetä" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Lähetä tiedosto tai vedä se tänne." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Lähetä tiedoston pyyntö" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Käyttäjä" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Käyttäjän lupa" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "ALV" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Vahvistettu" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Videot" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Lukija" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Haluatko tulla paperittomaksi yritykseksi? Tutustutaan Odoo " +"Documentsiin." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Verkkosivun ilmoitukset" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Verkkosivun viestihistoria" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Viikot" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "Mitä haluat tehdä jäljellä oleville sivuille?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Sinä" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Voit joko lähettää tiedoston tietokoneeltasi tai kopioida ja liimata " +"Internet-linkin tiedostoon." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "päivää." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "dokumentti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "asiakirjat" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "esim. keskustele tarjouksesta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "esim. finanssi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "esim. puuttuvat menotositteet" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "esim. tarkastettavaksi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "esim. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "tiedostot" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "kansio" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "valitse" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "jakaja" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "nimetön" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/fr.po b/addons_extensions/documents/i18n/fr.po new file mode 100644 index 000000000..691a81d44 --- /dev/null +++ b/addons_extensions/documents/i18n/fr.po @@ -0,0 +1,3944 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Jolien De Paepe, 2024 +# Wil Odoo, 2024 +# allanot nicolas , 2024 +# Manon Rondou, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Manon Rondou, 2024\n" +"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (copie)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (pages restantes)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s Fichiers" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" +"%s fichier(s) non déplacé(s), car verrouillé(s) par un autre utilisateur" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s nouveau(x) document(s) créé(s)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s page(s) supprimée(s)" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Les fichiers numérisés apparaîtront automatiquement dans votre espace de " +"travail. Ensuite, traitez vos documents en masse avec l'outil de division : " +"lancez des actions définies par l'utilisateur, demandez une signature, " +"convertissez en factures fournisseur avec l'IA, etc." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Astuce : Devenez une société sans papier" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Désélectionner cette page puisque nous prévoyons de d'abord traiter " +"toutes les factures." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Sélectionnez cette page pour continuer." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Généré par " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " Aperçu du fichier" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Charger" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Documents" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Enregistrement
    lié
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Document demandé" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;Documents." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Demande" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Document demandé" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Demande de document :
    \n" +" \n" +" Boîte de réception financière\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Bonjour OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) vous a demandé de fournir le document suivant :\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Boîte de réception financière\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Exemple d'une note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Veuillez nous fournir le document manquant avant le 17-05-2021.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Généré par Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Demande de document :
    \n" +" \n" +" Boîte de réception financière\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Bonjour OdooBot,\n" +"

    \n" +" N'oubliez pas de télécharger le document demandé :\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Boîte de réception financière\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Exemple d'une note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Veuillez nous fournir le document manquant avant le 17-05-2021.\n" +"

    \n" +" Merci,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Généré par Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Un dictionnaire Python qui sera interprété pour fournir les valeurs par " +"défaut lors de la création de nouveaux enregistrements pour cet alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Accès" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Erreur d'accès" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Jeton d'accès" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Action" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Nécessite une action" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Actif" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Activités" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Activité" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Activité exception décoration" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Plans d'activité" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Statut de l'activité" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Type d'activité" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Icône de type d'activité" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Types d'activités" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"Les plans d'activité permettent d'attribuer une liste d'activités en quelques clics\n" +" (par ex. \"Processus de signature de l'accord de confidentialité\", \"Flux de travail de l'espace de travail\", ...)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Type d'activité" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Ajouter" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Ajouter un fichier" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Ajouter une URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Ajouter un nouveau fichier" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Ajouter des personnes ou des adresses e-mail..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrateur" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Publicités" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Alias Contact Securité" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Alias de domaine" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Nom d'alias de domaine" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Alias de messagerie" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Nom de l'alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Statut de l'alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Statut de l'alias évalué sur le dernier message reçu." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Modèle concerné" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Tous" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Un moyen simple de traiter les e-mails entrants consiste à configurer votre " +"scanner pour envoyer des PDF à" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Un moyen simple de traiter les e-mails entrants consiste à configurer votre " +"scanner pour envoyer des PDF à votre e-mail de l'espace de travail. Les " +"fichiers numérisés apparaîtront automatiquement dans votre espace de " +"travail. Ensuite, traitez vos documents en masse avec l'outil de division : " +"lancez des actions définies par l'utilisateur, demandez une signature, " +"convertissez en factures fournisseur avec l'IA, etc." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Une erreur s'est produite lors du chargement." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Toute personne disposant du lien " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Archiver le ou les fichiers originaux" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Êtes-vous sûr de vouloir supprimer la page ciblée ?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Êtes-vous sûr de vouloir supprimer la (les) page(s) sélectionnée(s)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Êtes-vous sûr de vouloir supprimer cette page ?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "Êtes-vous sûr de vouloir effacer définitivement le document ?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "Êtes-vous sûr de vouloir effacer définitivement les documents ?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Comme ce PDF contient plusieurs documents, divisons-le et traitons-le en " +"masse." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Pièce jointe" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Nombre de pièces jointes" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Description de la pièce jointe" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Nom de la pièce jointe" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Type de pièce jointe" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Addition" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Page vierge" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Brochures" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "En définissant un dossier, les téléchargements généreront un document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Annuler" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Somme de contrôle/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Enfants" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Choisissez un enregistrement à lier" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Choisir ou configurer les serveurs de messagerie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Cliquez sur une carte pour sélectionner le document." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Cliquez sur une vignette pour prévisualiser le document." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Cliquez sur le séparateur de pages : nous ne souhaitons pas séparer " +"ces deux pages car elles appartiennent au même document." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Cliquez sur la croix pour quitter la prévisualisation." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "Client généré" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Fermer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Fermer les outils de division" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Couleur" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Société" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Paramètres de config" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Configuration" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Configurer" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Contact" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Contrats" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Boutons du panneau de commande" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Copier le lien" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Créer une activité" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "Créer un plan d'activité pour les documents" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Créer une nouvelle activité" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Créé par" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Date de création" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Message de rejet personnalisé" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Jours" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Valeurs par défaut" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" +"Délai après la suppression permanente du document dans la corbeille (jours)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Supprimer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Supprimer des pages focalisées ou ciblées" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Supprimer définitivement" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Délai de suppression" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Délai de suppression" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Délai de suppression (jours)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Obsolète" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Détails" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Ignorer" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Nom d'affichage" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" +"Voulez-vous quitter sans enregistrer ou rassembler des pages dans un seul " +"document ?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Document" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Nombre de documents" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Nom du document" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Plans de document" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "Redirection de document" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Demande de document" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Demande de document {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "Demande de document : %(name)s Chargé par : %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Demande de document : Rappel" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Aperçu du document" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Document : Demande de document" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Documents" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Enregistrement du lien vers le Document" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Incorporation de la création de documents" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "Incorporation du détachement de documents" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Fait" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Fait !" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Télécharger" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "Télécharger #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Télécharger tous les fichiers" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Télécharger le fichier" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Brouillon" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Déposer les fichiers à charger ici" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Date d'échéance dans" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Type d'échéance" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Dupliquer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Modifier" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Éditeur" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Alias de messagerie" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Alias de messagerie" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "E-mail cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Domaine de l'e-mail e.g. 'example.com' dans 'odoo@example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Erreur" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Quitter l'aperçu/Désélectionner/Quitter" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Quitter les outils de division" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Quitter sans enregistrer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Note de frais" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Expiration" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Exporter" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "Remarques supplémentaires..." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favori de" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Fichier" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Contenu du fichier (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Contenu du fichier (brut)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Extension du fichier" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Taille de fichier" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Modèle d'aide au contrôleur - Streaming de fichier" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Fichiers" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Centralisation des fichiers" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" +"Les fichiers seront envoyés à la corbeille et supprimés à jamais après" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" +"Les fichiers seront envoyés à la corbeille et supprimés à jamais après %s " +"jours." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Financier" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Fiscal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Cibler la première page du groupe suivant" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Cibler la première page du groupe précédent" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Cibler la page suivante" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Cibler la page précédente" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Dossier" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Abonnés" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Abonnés (Partenaires)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Icône Font Awesome par ex. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Rassembler en un document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Général" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Regrouper par" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "RH" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "A un message" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Historique" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Page d'accueil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID de l'enregistrement parent qui définit l'alias (exemple : le projet qui " +"contient l'alias lié à la tâche)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Icône" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Icône pour indiquer une activité d'exception." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Si coché, de nouveaux messages demandent votre attention." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Si coché, certains messages ont une erreur de livraison." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Si défini, ce contenu sera automatiquement envoyé à tous les utilisateurs " +"non autorisés à la place du message par défaut." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Images" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Boîte de réception" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Contenu indexé" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Utilisateurs internes" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Est une pièce jointe modifiable" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Est favori" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Est un abonné" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "Contient plusieurs pages" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" +"Les articles dans la corbeille seront supprimés à jamais après %s jours." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" +"Les articles déplacés dans la corbeille seront supprimés à jamais après %s " +"jours." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Mis à jour par" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Mis à jour le" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Juridique" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Traitons les documents dans votre boîte de réception.
    Astuce : " +"utilisez des étiquettes pour filtrer les documents et structurer votre " +"processus." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Traitons ces factures : envoyez-les à l'espace de travail Finance." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Traitons ce document, provenant de notre scanner." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Marquons cet e-mail comme Juridique
    Astuce : les actions peuvent " +"être adaptées à votre processus, en fonction de l'espace de travail." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Lien" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "URL du lien" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Lien copié dans le presse-papier !" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Détection de l'arrivée d'une partie locale" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Verrouiller" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Verrouillé" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Verrouillé par" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Enregistrer une note..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Se connecter" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Se déconnecter" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Message" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Erreur d'envoi du message" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Messages" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Type de mime" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Modèle" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modèles" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Mois" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Déplacer cette page vers la corbeille" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Déplacer vers la corbeille" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Déplacer vers la corbeille" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "Déplacer vers la corbeille ?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Déplacé vers la corbeille" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Mes activités" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Échéance de mon activité" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Mes documents" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nom" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "Nom / Extension" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Nouveau" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Nouveau fichier" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Nouveau groupe" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Activité suivante de l'événement du calendrier" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Date limite de l'activité à venir" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Résumé de l'activité suivante" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Type d'activités à venir" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Aucun type d'activité trouvé. Créons-en un !" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "Aucun alias configuré" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Aucun document n'a été sélectionné" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Aucun lien partagé" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Aucun" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Pas un fichier" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Pas attaché" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Note" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Notifier" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Nombre d'actions" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Nombre d'erreurs" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Nombre de messages nécessitant une action" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Nombre de messages avec des erreurs d'envoi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Logo Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Site Web Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Plus de 120 jours" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"ID optionnel d'un fil (enregistrement) auquel tout message entrant sera " +"rattaché, même s'il ne s'agissait pas d'une réponse à ce fil. Si renseigné, " +"la création de nouveaux enregistrements sera complètement désactivée." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Ou bien envoyez des e-mails à" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Autre" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Détenteur" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Propriétaire : #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Dossier parent" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Modèle parent" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Chemin parent" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Identifiant de la discussion de l'enregistrement parent" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Modèle parent de l'alias. Le modèle possédant la référence de l'alias n'est " +"pas nécessairement le modèle donné par alias_model_id (exemple : project " +"(parent_model) et task (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Transfert partiel" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Partenaire" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Épingler" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Politique de publication d'un message sur le document via la passerelle d'e-mails.\n" +"- tout le monde : tout le monde peut publier\n" +"- partenaires : seulement les partenaires authentifiés\n" +"- abonnés : seulement les abonnés aux canaux suivis\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Présent" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Présentations" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "Aperçu des fichiers" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Projet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Évaluations" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Récent" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Enregistrement" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID de l'enregistrement du fil" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Pages restantes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Les e-mails de rappel ont été envoyés." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Rappel pour charger votre document{{ object.name and ' : ' + object.name or " +"'' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Supprimer le membre" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Renommer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Demande" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Demander une activité" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Demande à" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Demander un document" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Demander un fichier" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Demandé\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Document demandé" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Documents demandés" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Nom modèle Res" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID ressource" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Modèle de la ressource" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Nom de la ressource" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Responsable" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Utilisateur responsable" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Restaurer" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Restreint" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Dossier restreint" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Rôle" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Erreur d'envoi SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Ventes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Enregistrer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Tout sélectionner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Sélectionner une page ciblée" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Sélectionner la page suivante" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Sélectionner les pages suivantes du groupe" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Sélectionner la page précédente" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Sélectionner les pages précédentes du groupe" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Sélectionner/Désélectionner toutes les pages" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Envoyer" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Envoyez cette lettre au département juridique, en attribuant les bonnes " +"étiquettes." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Envoyé au partenaire lorsqu'un document lui est demandé" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Séquence" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Définir le délai de suppression des documents dans la corbeille" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Définir des rappels dans les activités pour notifier les utilisateurs qui " +"n'ont pas chargé leur document demandé" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Paramètres" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Partager" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Raccourci" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Taille :" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Certains fichiers n'ont pas pu être chargé (taille max : %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Document d'origine" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Diviser" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Diviser le PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "Diviser toutes les pages blanches" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Diviser les pages sélectionnées" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Favoris" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Statut basé sur les activités\n" +"En retard : la date d'échéance est déjà dépassée\n" +"Aujourd'hui : la date d'activité est aujourd'hui\n" +"Planifiée : activités futures" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Rester sur la page" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Structure" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Résumé" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Étiquette" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Nom de l'étiquette" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Étiquettes" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Texte" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "Le délai de suppression doit être positif." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Le modèle (type de document Odoo) auquel correspond cet alias. Chaque e-mail" +" entrant ne correspondant pas à un enregistrement existant entraînera la " +"création d'un nouvel enregistrement de ce modèle (par ex. une tâche d'un " +"projet)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Le nom de l'alias, par exemple 'carrières' pour récupérer les e-mails de " +"" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Ce mois" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Cette semaine" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Cette pièce jointe est déjà un document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Ce document a été demandé. \n" +"Chargez-le." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" +"Ce fichier a été envoyé à la corbeille et sera supprimé à jamais le %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Cela représente les différentes catégories de choses que vous devez faire " +"(par exemple \"Appeler\" ou \"Envoyer un e-mail\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Vignette" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Status de la vignette" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Astuce : configurez votre scanner pour envoyer tous les documents à cette " +"adresse." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Astuce : Devenez une société sans papier" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "À valider" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "À valider" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Aujourd'hui" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Marquer comme favori" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Infobulle" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Corbeille" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "Gestion de la corbeille" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Vrai si nous pouvons modifier la pièce jointe du lien." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Type" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Type d'activité d'exception enregistrée." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"L'URL %s ne semble pas être complète, puisqu'elle ne commence pas par " +"http(s):// ou ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "URL de l'aperçu de l'image" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Déverrouiller" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Sans nom" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Désépingler" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Charger" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Chargez un fichier ou glissez-le ici." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Demande de chargement de fichier" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Utilisateur" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Autorisation de l'utilisateur" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "TVA" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Validé" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Vidéos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Visionneur" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Envie de devenir une société sans papier ? Découvrons Odoo Documents." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Messages du site web" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Historique de communication du site web" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Semaines" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "Que voulez-vous faire avec les pages restantes ?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Vous " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" +"Vous n'êtes pas autorisé à épingler/désépingler des actions intégrées." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Vous pouvez soit charger un fichier depuis votre ordinateur, soit " +"copier/coller une adresse internet qui y renvoie." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" +"Vous devez être dans un espace de travail spécifique et modifiable pour " +"charger des fichiers" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "alias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "jours." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "documents" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "par ex. Proposition d'examen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "par ex. Finance" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "par ex. Note de frais manquante" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "par ex. À valider" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "par ex. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "par ex. mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "fichiers" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "dossier" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "sélectionner" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "partagé par" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "code de statut : %(status)s, message : %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sous-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "sans nom" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/fr_BE.po b/addons_extensions/documents/i18n/fr_BE.po new file mode 100644 index 000000000..00702e42f --- /dev/null +++ b/addons_extensions/documents/i18n/fr_BE.po @@ -0,0 +1,2866 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2022-01-24 08:59+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "" diff --git a/addons_extensions/documents/i18n/gu.po b/addons_extensions/documents/i18n/gu.po new file mode 100644 index 000000000..1e16ad0d6 --- /dev/null +++ b/addons_extensions/documents/i18n/gu.po @@ -0,0 +1,2873 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Qaidjohar Barbhaya, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2022-09-22 05:46+0000\n" +"Last-Translator: Qaidjohar Barbhaya, 2023\n" +"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Access Groups" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Action" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Action Needed" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Actions" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "Active" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "Activities" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "પ્રવૃત્તિ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Activity Exception Decoration" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Activity State" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Activity Type Icon" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Add" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Alias Name" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "Alias domain" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "Archived" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "Assets" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "Attachment Count" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "Bill" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "Cancel" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Category" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Close" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Company" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "શરતો" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Configuration" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Contact" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "Contains" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Create" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Created by" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Created on" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Days" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "કાઢી નાંખો" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "Deprecated" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Description" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Discard" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "દસ્તાવેજ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "દસ્તાવેજો" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Domain" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Download" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Edit" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "Email Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Expense" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "ફાઇલ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Followers" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Followers (Partners)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font awesome icon e.g. fa-tasks" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Future Activities" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "Group By" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "Has Message" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "History" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Icon" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Icon to indicate an exception activity." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "If checked, new messages require your attention." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "If checked, some messages have a delivery error." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "Is Follower" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Late Activities" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "લોગ ઇન" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "Message Delivery error" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Messages" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "Miscellaneous" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Months" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "My Activity Deadline" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Name" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Next Activity Calendar Event" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Next Activity Deadline" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Next Activity Summary" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Next Activity Type" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Note" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Number of Actions" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "Number of errors" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Number of messages which requires an action" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Number of messages with delivery error" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Other" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "માલિક" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "Parent Path" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "દૂર કરો" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Responsible User" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS Delivery error" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "Sales" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Save" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "Schedule Activity" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Sequence" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Settings" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "Share" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Show all records which has next action date is before today" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Status" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "સાર" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Tag Name" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Tags" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Today Activities" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Type" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Type of the exception activity on record." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "Upload" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "User" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "Validated" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Website Messages" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "Website communication history" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "name" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "" diff --git a/addons_extensions/documents/i18n/he.po b/addons_extensions/documents/i18n/he.po new file mode 100644 index 000000000..9e171cb8d --- /dev/null +++ b/addons_extensions/documents/i18n/he.po @@ -0,0 +1,3708 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Lilach Gilliam , 2024 +# Orel Nahmany, 2024 +# Fishfur A Banter , 2024 +# Mor Kir , 2024 +# Leandro Noijovich , 2024 +# Ofir Blum , 2024 +# Netta Waizer, 2024 +# שהאב חוסיין , 2024 +# NoaFarkash, 2024 +# MichaelHadar, 2024 +# Roy Sayag, 2024 +# ExcaliberX , 2024 +# Yihya Hugirat , 2024 +# Martin Trigaux, 2024 +# yael terner, 2024 +# דודי מלכה , 2024 +# Ha Ketem , 2024 +# Lilach Gilliam , 2024 +# ZVI BLONDER , 2024 +# hed shefer , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: hed shefer , 2024\n" +"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (העתק)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%sקבצים" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s הקבצים לא הועברו מכיוון שהם נעולים על ידי משתמש אחר" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +"קבצים סרוקים יופיעו אוטומטית בסביבת העבודה. ולאחר מכן אפשר לעבד מסמכים " +"גדולים עם כלי הפיצול: הפעלת פעולות שהוגדרו על-ידי המשתמש, לבקש חתימה, להמיר " +"לחשבוניות ספקים עם בינה מלאכותית ועוד." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "טיפ: הפכו לארגון נטול נייר" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "הסרת דף זה כי בכוונתנו קודם לעבד את כל החשבוניות." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    מופעל ע\"י" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " העלה" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "מסמכים" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "רשומה
    קשורה
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "מסמך מבוקש" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "בקשה" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "מסמך מבוקש" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"מילון פייתון שיוערך כדי לספק ערכי ברירת מחדל בעת יצירת רשומות חדשות לכינוי " +"זה." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "גישה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "שגיאת גישה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "אסימון גישה" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "פעולה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "נדרשת פעולה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "פעיל" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "פעילויות" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "פעילות" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "סימון פעילות חריגה" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "מצב פעילות" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "סוג פעילות" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "סוג פעילות" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "סוגי פעילויות" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "סוג פעילות" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "הוסף" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "הוספת קובץ" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "הוסף כתובת אתר אינטרנט" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "הוספת קובץ חדש" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "מנהל מערכת" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "מודעות" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "כינוי" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "כינוי אבטחה של איש קשר" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "שם-מתחם (דומיין)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "כינוי שם (דומיין)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "קידומת מייל" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "שם כינוי" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "סטטוס" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "מודל בעל כינוי" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "הכל" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "דרך פשוטה לטפל במיילים נכנסים זה להגדיר לסורק שלך לשלוח PDFים ל-" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"דרך נוחה לעבד דואר נכנס זה להגדיר את הסורק ככה שישלח PDFים למייל של סביבת " +"העבודה שלך. ואז, לעבד את המסמכים שלך בבת אחת עם הכלי לפיצול מסמכים: להוסיף " +"פעולות מוגדרות על-ידי מהשתמש, לבקש חתימה, להמיר לחשבונית ספק עם בינה " +"מלאכותית ועוד." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "כל אחד עם הקישור" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "שליחת קובץ/קבצים מקוריים לארכיון" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "בגלל שה-PDF מכין מספר מסמכים, בואו נחלק ואז נטפל בהם בבת-אחת." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "קובץ מצורף" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "כמות קבצים מצורפים" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "תיאור קובץ מצורף" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "שם קובץ המצורף" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "סוג קובץ מצורף" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "חשבונית" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "עלונים" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "על ידי הגדרת תיקיה, פעילויות ההעלאה ייצרו מסמך" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "בטל" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "ילדים" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "בחרו רשומה לקישור" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "לחצו על כרטיס כדילבחור את המסמך." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "לחיצה על תמונה ממוזערת כדי לצפות בתצוגה מקדימה של המסמך." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"לחצו על מפריד הדפים: איננו רוצים לפצל את שני הדפים האלה כי הם שייכים" +" לאותו מסמך." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "סגור" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "צבע" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "חברה" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "הגדרות תצורה" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "תצורה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "הגדר" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "איש קשר" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "חוזים" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "סרגל הכלים של לוח הבקרה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "העתק קישור" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "צור פעילות" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "צור פעילות חדשה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "נוצר על-ידי" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "תאריך יצירה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "הודעה מותאמת אישית להודעות שגויות" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "ימים" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "ערכי ברירת מחדל" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "עיכוב לאחר מחיקה לצמיתות של המסמך באשפה (ימים)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "מחיקה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "השהיית מחיקה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "השהיית מחיקה" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "השהיית מחיקה (ימים)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "יצא משימוש" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "פרטים" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "בטל" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "שם לתצוגה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "מסמך" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "כמות מסמכים" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "שם מסמך" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "תוכניות מסמכים" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "בקשת מסמך" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "בקשת מסמך {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "מסמכים" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "מסמכים מקושרים לרשומה" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "שילוב יצירת מסמכים" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "בוצע" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "בוצע!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "הורד" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "הורדת כל הקבצים" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "טיוטה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "העבר קבצים לכאן כדי להעלות" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "תאריך יעד " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "סוג יעד" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "שכפל" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "ערוך" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "עורך" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "קידומת מייל" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "כינויי דוא\"ל" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "עותק דוא\"ל" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "שגיאה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "מאשר הוצאות" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "תוקף הצעת מחיר" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "ייצוא" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "מועדף של" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "קובץ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "תוכן קובץ (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "תוכן קובץ (גלם)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "סיומת קובץ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "גודל קובץ" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "קבצים" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "ריכוז קבצים" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "פיננסי" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "כספי" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "תיקייה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "עוקבים" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "עוקבים (לקוחות/ספקים)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "פונט מדהים למשל עבור משימות fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "כללי" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "קבץ לפי" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "משאבי אנוש" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "יש הודעה" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "היסטוריה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "בית" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "מזהה" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"מזהה של רשומת האב המחזיקה בכינוי (דוגמה: פרויקט המחזיק בכינוי ליצירת " +"המשימות)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "סמל" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "סמל לציון פעילות חריגה." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "אם מסומן, הודעות חדשות דורשות את תשומת לבך." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "אם מסומן, בחלק מההודעות קיימת שגיאת משלוח." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"אם מוגדר, תוכן זה יישלח אוטומטית למשתמשים לא מורשים במקום הודעת ברירת המחדל." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "תמונות" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "דואר נכנס" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "תוכן מאונקדס" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "משתמשים פנימיים" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "צרופה שניתן לערוך" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "מועדף" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "עוקב" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "נחשב מרובה עמודים" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על-ידי" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "עדכון אחרון ב" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "משפטי" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"בואו נעבד מסמכים מתיבת הדואר הנכנס.
    טיפ: השתמשו בתגיות לסנן מסמכים " +"ולגבש את תהליך העבודה שלך." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "בואו נעבד את החשבוניות האלה: שליחה לסביבת העבודה של כספים." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "בואו נעבד את המסמך הזה, שבא מהסורק שלנו." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"בואו נתייג את המייל הזה כמשפטי.
    טיפ: אפשר להתאים לפי סביבת העבודה את" +" הפעולות הרלוונטיות לתהליך שלך." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "קישור" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "קישור URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "זיהוי נכנסות מבוסס חלק מקומי" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Lock" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "נעולה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "נעול על ידי" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "כתוב הערה..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "התחבר" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "התנתק" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "הודעה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "הודעת שגיאת שליחה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "הודעות" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "סוג MIME" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "מודל" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "מודלים" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "חודשים" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "הפעילויות שלי" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "מועד אחרון לפעילות שלי" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "המסמכים שלי" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "שם" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "חדש" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "קובץ חדש" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "קבוצה חדשה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "הפעילות הבאה ביומן" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "מועד אחרון לפעילות הבאה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "תיאור הפעילות הבאה " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "סוג הפעילות הבאה" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "לא נבחר מסמך" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "אין קישורים לשתף" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "אף אחד" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "לא קובץ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "לא מצורף" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "הערה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "להודיע" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "מספר פעולות" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "מספר השגיאות" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "מספר הודעות הדורשות פעולה" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "מספר הודעות עם שגיאת משלוח" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "לוגו של Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "אתר אינטרנט של Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "ישן יותר" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"מזהה אפשרי של שרשור (רשומה) שאליו יצורפו כל ההודעות הנכנסות, גם אם לא השיבו " +"אליו. אם מוגדר, הדבר יבטל את יצירת הרשומות החדשות לחלוטין." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "או לשלוח מייל ל-" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "אחר" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "אחראי" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "מודל אב" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "נתיב אב" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "מזהה רשומת שרשור אב " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"מודל אב המחזיק בכינוי. המודל המחזיק במזהה לכינוי אינו בהכרח המודל שניתן על " +"ידי alias_model_id (דוגמה: project (parent_model) ומשימה (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "לקוח/ספק" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"מדיניות שליחת הודעה במסמך באמצעות שער הדואר.\n" +"- כולם: כולם יכולים לשלוח\n" +"- לקוחות/ספקים: רק לקוחות/ספקים מאומתים\n" +"- עוקבים: רק עוקבים של המסמך הקשור או חברים בערוצים הבאים\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "נוכח" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "מצגות" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "פרויקט" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "דירוגים" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "רשומה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "מזהה רשומת שרשור" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "עמודים שנותרו" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "שנה שם" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "בקשה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "פעילות דרושה" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "בקשה ל" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "בקש מסמך" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "בקש קובץ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "מסמך מבוקש" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "שם מודל Res" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "מזהה משאב" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "מודל המשאב" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "שם המשאב" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "אחראי" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "משתמש אחראי" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "שחזר" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "תפקיד" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "שגיאה בשליחת SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "מכירות" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "שמור" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "בחירת הכל" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "שלח" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "שליחת המכתב הזה למחלקה המשפטית, באמצעות הגדרת התווית הנכונה." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "רצף" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "הגדר עיכוב מחיקה עבור מסמכים באשפה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "הגדרות" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "שתף" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "קיצור דרך" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "גודל:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "מסמך מקור" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "פצל" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "פיצול PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "מסומן בכוכב" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"סטטוס על בסיס פעילויות\n" +"איחור: תאריך היעד כבר חלף\n" +"היום: תאריך הפעילות הוא היום\n" +"מתוכנן: פעילויות עתידיות." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "השאר בדף זה" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "מבנה" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "תקציר" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "תגית" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "שם תגית" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "תגיות" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "טקסט" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "עיכוב המחיקה צריך להיות חיובי." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"המודל (סוג מסמך Odoo) שאליו הכינוי הזה תואם. כל דוא\"ל נכנס שלא יענה לרשומה " +"קיימת יביא ליצירת רשומה חדשה של מודל זה (למשל משימת פרויקט)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"שם כינוי הדוא\"ל, למשל 'עבודות' אם ברצונך לקבל הודעות דוא\"ל ל " +"" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "חודש נוכחי" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "שבוע נוכחי" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "קובץ מצורף זה הוא כבר מסמך" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "תמונה ממוזערת" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "סטטוס תמונה ממוזערת" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "טיפ: הגדר את הסורק שלך לשלוח את כל המסמכים לכתובת זו." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "טיפ: הפכו לחברה נטולת-נייר." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "לאישור" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "לאישור" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "היום" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "החלף מועדפים" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "הסבר" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "אשפה" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "נכון אם אפשר לערוך את הקישור לצרופה." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "סוג" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "סוג הפעילות החריגה ברשומה." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "תמונה מקדימה של כתובת URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "שחרר נעילה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "ללא שם" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "העלה" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "בקשה להעלאת קובץ" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "משתמש" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "ח.פ / ע.מ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "אושרה" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "סרטונים" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "צופה" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "רוצה להפוך לארגון נטול ניירת? בואו לגלות את Odoo מסמכים." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "הודעות מאתר האינטרנט" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "היסטורית התקשרויות מאתר האינטרנט" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "שבועות" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "את.ה" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "ניתן להעלות קובץ מהמחשב או להעתיק / להדביק קישור מהאינטרנט לקובץ שלך." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "מסמך" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "מסמכים" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "למשל: לדון בהצעה" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "לדוג' כספים" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "לדוג' הוצאה חסרה" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "לדוג' לאישור" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "לדוג' https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "בחירה" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "שותף על ידי" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "ללא שם" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/hi.po b/addons_extensions/documents/i18n/hi.po new file mode 100644 index 000000000..c6b7ba385 --- /dev/null +++ b/addons_extensions/documents/i18n/hi.po @@ -0,0 +1,3656 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Gautam Hingrajiya, 2024 +# Martin Trigaux, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Martin Trigaux, 2024\n" +"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "कार्रवाई" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "गतिविधियाँ" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "जोड़ना" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "रद्द" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "बंद" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "डाउनलोड" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "संपादित" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "त्रुटि!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "नया" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "सहेज" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/hr.po b/addons_extensions/documents/i18n/hr.po new file mode 100644 index 000000000..4f576fc79 --- /dev/null +++ b/addons_extensions/documents/i18n/hr.po @@ -0,0 +1,3694 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Kristina Palaš, 2024 +# hrvoje sić , 2024 +# Vladimir Olujić , 2024 +# Ivica Dimjašević , 2024 +# Tina Milas, 2024 +# Đurđica Žarković , 2024 +# Karolina Tonković , 2024 +# KRISTINA PALAŠ , 2024 +# 0ba0ac30481a756f36528ba6f9a4317e_6443a87 <52eefe24349934c364624ef40611b7a3_1010754>, 2024 +# Milan Tribuson , 2024 +# Davor Bojkić , 2024 +# Martin Trigaux, 2024 +# Bole , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Bole , 2024\n" +"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (kopija)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s datoteka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Podržano od " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Prijenos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Dokumenti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Python rječnik koji će se evaluirati kako bi dobili zadane vrijednosti pri " +"kreiranju novog zapisa za ovaj alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Pristup" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Greška u pristupu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Token pristupa" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Radnja" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Potrebna radnja" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Aktivno" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Aktivnosti" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Aktivnost" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Oznaka izuzetka aktivnosti" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Planovi aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Status aktivnosti" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tip aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ikona tipa aktivnosti" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Tipovi aktivnosti" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Tip aktivnosti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Dodaj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Dodaj datoteku" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Dodaj URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Dodaj novu datoteku" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrator" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Oglasi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Sigurnost alias kontakta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Domena aliasa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Naziv domene aliasa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Alias email" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Naziv aliasa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Status aliasa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Status aliasa procijenjen prema zadnje primljenoj poruci." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Model aliasa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Sve" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Prilog" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Broj priloga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Opis priloga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Naziv privitka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Tip priloga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Račun" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Otkaži" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Kontrolni zbroj/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Podređeni" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Zatvori" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Boja" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Tvrtka" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguracijske postavke" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Postavke" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Postavi" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Ugovori" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Tipke upravljačke ploče" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Kreiraj aktivnost" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Kreiraj novu aktivnost" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Kreirao" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Datum kreiranja" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Prilagođena poruka odbijanja" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dana" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Zadane vrijednosti" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Briši" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Zastarjelo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Detalji" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Odbaci" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Broj dokumenata" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Naziv dokumenta" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Zahtijev dokumenta" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumenti" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Gotovo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Gotovo!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Preuzimanje" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Nacrt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Dospijeva za" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tip dospijeća" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Dupliciraj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Uredi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Urednik" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "E-mail alias" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Alias e-maila" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Email cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Greška" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Trošak" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Istek" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Izvoz" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Omiljeni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Datoteka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Sadržaj datoteke (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Sadržaj datoteke (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Veličina datoteke" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Datoteke" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Centralizacija datoteka" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Mapa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Pratitelji" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Pratitelji (partneri)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font awesome ikona npr. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Općenito" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Grupiraj po" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Ima poruku" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Povijest" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Naslovna" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID matične evidencije sadrži pseudonim (na primjer : projekt sadrži " +"pseudonim pod kojim djelatnik kreira zadatak)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ikona" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ikona za prikaz iznimki." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Ako je označeno, nove poruke zahtijevaju Vašu pažnju." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Ako je označeno neke poruke mogu imati grešku u dostavi." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Ako je postavljeno, ovaj sadržaj bit će automatsku poslan neovlaštenim " +"korisnicima umjesto zadane poruke." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Slike" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Pristigla pošta" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indeksirani sadržaj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Interni korisnici" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Je li pratitelj" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Promijenio" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Promijenjeno" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Pravno" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Veza" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Zaključaj" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Zaključano" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Zabilježi napomenu..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Korisnik" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Odjava" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Poruka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Greška pri isporuci poruke" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Poruke" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "MIME tip" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modeli" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Mjeseci" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Moje aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Rok za moju aktivnost" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Naziv" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Novi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Nova datoteka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Nova grupa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Kaldendarski događaj slijedeće aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Rok slijedeće aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Sažetak sljedeće aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Tip sljedeće aktivnosti" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Ništa" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Bilješka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Obavijesti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Broj akcija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Broj grešaka" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Broj poruka koje zahtijevaju aktivnost" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Broj poruka sa greškama pri isporuci" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo Logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo web stranica" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Starije" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Opcionalni ID zapisa na kojeg će biti povezane sve dolazne poruke, čak i ako" +" oni nisu odgovorili na njega. Ako je postavljeno, to će onemogućiti " +"stvaranje novih zapisa u potpunosti." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Ostalo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Vlasnik" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Ishodni Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Putanja nadređenih" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID zapisa nadređenog" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Matični model sadrži pseudonim. Model sadrži alias referencu ali nije nužno " +"da model daje alias_model_id (na primjer: projekt ( matični_model ) kraj " +"zadatka (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Pravila za objavu poruke na dokumentu putem poštanskog sandučića.\n" +"- svatko: svatko može objaviti poruku\n" +"- partneri: samo autentificirani partner\n" +"- pratitelji: samo pratitelji srodne dokumentacije\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Prisutan" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Prezentacije" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Projekt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Ocjene" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Zapis" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID niti zapisa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Zahtjev" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Traženi dokumenti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID resursa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Model resursa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Naziv resursa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Odgovoran" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Odgovorna osoba" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Obnovi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Uloga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Greška u slanju SMSa" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Prodaja" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Spremi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Označi sve" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Pošalji" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Sekvenca" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Postavke" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Podjeli" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Prečac" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Veličina:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Izvorni dokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Razdijeli" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Razdijeli PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Sa zvjezdicom" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status po aktivnostima\n" +"U kašnjenju: Datum aktivnosti je već prošao\n" +"Danas: Datum aktivnosti je danas\n" +"Planirano: Buduće aktivnosti." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Struktura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Sažetak" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Oznaka" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Naziv oznake" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Oznake" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Tekst" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Model (Odoo vrsta dokumenta) na koje se ovaj alias odgovara. Svaki dolazni " +"e-mail koji ne odgovara na postojeći zapis uzrokovati će stvaranje novog " +"zapisa ovog modela (npr. projektni zadatak)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Ime e-mail aliasa, npr. 'poslovi' ako žele uhvatiti e-poštu " +"za" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Ovaj mjesec" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Ovaj tjedan" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Ovaj prilog već postoji kao dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Za odobriti" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Za odobriti" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Danas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Vrsta" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Vrsta aktivnosti iznimke na zapisu." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Otključaj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Bezimeno" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Učitaj" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Korisnik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "Porezni broj" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Ovjereno" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Video" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Poruke webstranica" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Povijest komunikacije Web stranice" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Tjedni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Možete učitati datoteku sa svog računala ili copy/paste internet link u " +"svoju datoteku" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "dokumenti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "npr. Raspraviti o prijedlogu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "odaberi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "neimenovani" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/hu.po b/addons_extensions/documents/i18n/hu.po new file mode 100644 index 000000000..5722264cf --- /dev/null +++ b/addons_extensions/documents/i18n/hu.po @@ -0,0 +1,2885 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tibor Kőnig , 2022 +# Gergő Kertész , 2022 +# Krisztián Juhász , 2022 +# Tamás Dombos, 2022 +# krnkris, 2022 +# Martin Trigaux, 2022 +# Ákos Nagy , 2022 +# gezza , 2023 +# Tamás Németh , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2022-09-22 05:46+0000\n" +"Last-Translator: Tamás Németh , 2023\n" +"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "%s dokumentum" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "%s dokumentum (%s zárolt)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr ", lejárt ekkor:" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "Bájt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "GB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "KB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "MB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Támogatja a(z)" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr " Összes letöltése" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr " Letöltés" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr " Webcím felkeresése" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "Egy Python szótár, ami kiértékelésre kerül az alapértelmezett értékek szolgáltatása érdekében ezen álnév új rekordjainak létrehozásakor." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "Feltételek és műveletek gyűjteménye, amely a feltételnek megfelelő összes mellékletnél elérhető" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "A munkaterület örökölni fogja szülő munkaterület címkéit" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Hozzáférés" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Hozzáférés hiba" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Csoport hozzáférés" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "Hozzáférési jogok" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Hozzáférési token" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Művelet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "Műveletszám" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "Művelet neve" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Művelet szükséges" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Műveletek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "Aktív" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "Tevékenységek" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "Tevékenység" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Tevékenység kivétel dekoráció" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "Tevékenység megjegyzés" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Tevékenység állapota" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tevékenység típus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Tevékenység típus ikon" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "Tevékenységtípus" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Hozzáadás" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Fájl hozzáadása" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Webcím hozzáadása" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "Hivatkozás hozzáadása" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Új fájl" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Adminisztrátor" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "Hirdetések" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Álnév" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "Álnév kapcsolat biztonság" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Álnév elnevezése" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "Álnév tartomány" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "Álnevesített modell" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "Minden fájl feltöltve" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "Lehetővé teszi" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "Lehetővé teszi a dokumentumok kezelését." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "Archiválás" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "Archivált" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "Vagyontárgyak" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Csatolva a következőhöz" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Melléklet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "Mellékletek száma" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Melléklet leírása" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Csatolmány neve" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Melléklet típusa" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "Elérhető szabályok" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "Számla" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "Márka 1" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "Márka 2" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "Brosúrák" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "Feltölthet" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "Mégse" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Kategória" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Ellenőrző összeg/SHA1" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Bezárás" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Vállalat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "Feltétel típusa" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Feltételek" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfiguráció" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "E-mail szerverek beállítása" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kapcsolat" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "Tartalmaz" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "Szerződések" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Létrehozás" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "Új megosztás" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "Új tevékenység" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Létrehozta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Létrehozva" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Létrehozva" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "Kritériumok" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "nap" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Alapértelmezett értékek" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "A feltöltött dokumentumok alapértelmezett értékei" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Törlés" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "Elavult" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Leírás" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Elvetés" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Megjelenített név" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "Dokumentum" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Dokumentum száma" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Dokumentum név" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "Dokumentum tulajdonosa" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Dokumentum kérése" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "Dokumentum munkafolyamat címke akció" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "Dokumentum lista" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumentumok" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "Dokumentumok megosztása" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "Dokumentumok munkaterület" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "Nem tartalmazza" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Tartomány" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Letöltés" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "Összes fájl letöltése" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "Letöltés és feltöltés" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Ejtsen ide fájlokat a feltöltésükhöz" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "Esedékes" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "Esedékesség típusa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Szerkesztés" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "E-mail álnév" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "E-mail másolat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Hiba" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "Kizárt címkék" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Költség" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "Lejárt" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Kedvencnek jelölte: " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Fájl" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Fájltartalom (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Fájltartalom (nyers)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Fájlméret" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Fájlok központosítása" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "Pénzügy" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "Pénzügyi" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "Költségvetés" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "Költségvetési év" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "Mappa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Követők" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Követők (Partnerek)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font awesome ikon pld: fa-tasks" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Jövőbeni tevékenységek" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "Csoportosítás" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "Személyügy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "Van üzenet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Előzmények" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "Azonosító" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "Az álnevet tartalmazó szülő rekord azonosítója (példa: a feladat létrehozására szolgáló álnevet tartalmazó projekt)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ikon" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Kivétel tevékenységet jelző ikon" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Ha be van jelölve, akkor az új üzenetek figyelmet igényelnek." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Ha be van jelölve, akkor néhány üzenetnél kézbesítési hiba lépett fel." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "Kép/Videó" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "Képek" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Beérkező levelek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indexált tartalom" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "Belső" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Kedvelt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "Követő" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "Tudás" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Frissítette" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Frissítve ekkor" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Késő tevékenységek" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "Jogi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Hivatkozás" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "Élő" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Zárolás" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "Zárolt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Zárolta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "Megjegyzés rögzítése..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Bejelentkezés" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Kilépés" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "Megjelöl piszkozatként" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "Késznek jelöl mindent" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "Marketing" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "Üzenetkézbesítési hiba" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Üzenetek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "MIME típus" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "Egyéb" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Modell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modellek" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Hónap" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "Többszörös érték" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Tevékenységeim határideje" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Dokumentumaim" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "Kedvenceim" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Név" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "Megosztási hivatkozás neve" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "Új" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Új fájl" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Új csoport" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Következő tevékenység naptár esemény" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Következő tevékenység határideje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Következő tevékenység összegzés" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Következő tevékenység típusa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Nincs dokumentum kiválasztva" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "Nincs korlátozás" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "Nincsenek megosztott hivatkozások" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Nem fájl" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Nincs mellékelve" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Megjegyzés" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Műveletek száma" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "Hibák száma" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Üzenetek száma, melyek műveletet igényelnek" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Kézbesítési hibával rendelkező üzenetek száma" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo logó" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Az Odoo weboldala" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "Az üzenetlista (rekord) választható azonosítója, amelyhez minden beérkező üzenet csatolásra kerül, még akkor is, ha senki sem válaszolt azokra. Ha beállításra kerül, az új rekordok létrehozása teljesen kikapcsolásra kerül." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Egyéb" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "Csak a saját dokumentumok" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "Csak a saját dokumentumok (Írás)" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Tulajdonos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "PDF/Dokumentum" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "Szülő mappa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Szülő modell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "Szülő útvonal" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Szülő rekord szál azonosító" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "Szülő munkaterület" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "Az álnevet tartalmazó szülő modell. Az álnév hivatkozást tartalmazó modell nem feltétlenül azonos az alias_model_id által megadott modellel (például: projekt (parent_model) és feladat (model))." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"A dokumentumra küldött üzenetek szabályai a levélátjáró használatával.\n" +"- mindenki: mindenki tud üzenni\n" +"- partnerek: csak a hitelesített partnerek\n" +"- követők: csak a kapcsolódó dokumentum követői vagy a következő csatornák tagjai\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Jelen van" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "Prezentációk" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "Projekt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "Olvasás hozzáférés" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "Olvasás csoportok" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Bejegyzés" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Bejegyzés üzenetlista azonosító" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Hátralevő oldalak" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Eltávolítás" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "Kicserél" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "Kicserélés erre" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Kérelem" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Dokumentum kérése" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Fájl kérése" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Kért dokumentum" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "Szükséges címkék" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Erőforrás azonosítója" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Erőforrás modell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Erőforrás neve" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Felelős" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Felelős felhasználó" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Visszaállítás" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS kézbesítési hiba" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "Értékesítések" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Mentés" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "Ütemezett művelet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Sorszám" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "Kapcsolat beállítása" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "Tulajdonos beállítása" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "Címkék beállítása" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Beállítások" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "Megosztás" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "Hivatkozások megosztása" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "Hivatkozás megosztása" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "Hivatkozások megosztása" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "Megosztás típusa" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "Megosztott" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "Megosztott dokumentumok" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "Megosztott címkék" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "Megosztások és E-mailek" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Az összes olyan rekord megjelenítése, melynél a következő művelet dátuma a mai nap előtti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Méret" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "Felosztás" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "PDF darabolása" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Állapot" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Tevékenységeken alapuló állapot\n" +"Lejárt: A tevékenység határideje lejárt\n" +"Ma: A határidő ma van\n" +"Tervezett: Jövőbeli határidő." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "Al-munkaterületek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Összefoglaló" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Címke" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "Címke kategóriák" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "Címke kategória" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Címke neve" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Címkék" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "Sablonok" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "Szöveg" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "A modell (Odoo dokumentum típus), amelyre ez az álnév vonatkozik. Bármely bejövő e-mail, amely nem válaszol egy meglévő rekordra, ezen modell egy új rekordjának létrehozását fogja előidézni (pl. egy projekt feladatot)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "Az e-mail álnév neve, pl. 'állások', ha erre az e-mailcímre szeretne leveleket kapni: " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "Az e-mailek ezen álnévre történő beérkezésekor létrehozásra kerülő rekordok tulajdonosa. Ha ez a mező nem kerül beállításra, akkor a rendszer megpróbálja megtalálni a megfelelő tulajdonost a küldő (Feladó) címe alapján, vagy az adminisztrátor fiókot használja, ha nem található rendszerfelhasználó ahhoz a címhez." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "Ez a hozzáférési token már létezik" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Hüvelykujj" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "Jóváhagyásra vár" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Jóváhagyásra vár" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Mai tevékenységek" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "Helyi súgó" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Típus" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Kivétel tevékenység típusa a rekordon." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "Webcím" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "Aktiválás" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Feloldás" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Névtelen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "Feltöltés" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "Dokumentum feltöltése" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "Feltöltés e-mailen keresztül" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Felhasználó" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "ÁFA" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "Érvényesség vége" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "Jóváhagyás" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "Jóváhagyott" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "Videók" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Honlap üzenetek" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "Weboldali kommunikációs előzmények" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "hét" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "Munkafolyamat műveletek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "Munkafolyamat szabály" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "Munkaterület" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "Munkaterületek" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "Írás hozzásférés" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "Írás csoportok" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "Írjon ide egy tippet a művelet számára!" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "Feltölthet egy fájlt a számítógépéről, vagy másolhat/beilleszthet egy, a fájlra mutató internetes hivatkozást." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "Youtube videó" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "törlés" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "dokumentum" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "dokumentumok" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "kiválasztott dokumentumok" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "letöltés" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "pl.: javaslat megbeszélése" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "pl.: Pénzügy" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "pl.: Hiányzó kiadás" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "pl.: Állapot" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "pl.: Érvényesítendő" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "pl.: Dokumentum érvényesítése" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "pl.: https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "név" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "helyreállít" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "kiválaszt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "kiválasztva" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "megosztotta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "állapotkód: %s, üzenet: %s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "névtelen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "webcím" diff --git a/addons_extensions/documents/i18n/id.po b/addons_extensions/documents/i18n/id.po new file mode 100644 index 000000000..c6e7ecdc5 --- /dev/null +++ b/addons_extensions/documents/i18n/id.po @@ -0,0 +1,3969 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Wil Odoo, 2024 +# Abe Manyo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Abe Manyo, 2024\n" +"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s dikunci)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "Mungkin Anda ingin menggunakan action pin." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (salin)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (halaman tersisa)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s File" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s Folder" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s dokumen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s file tidak dipindahkan karena mereka dikunci oleh user lain" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s dokumen baru dibuat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s halaman dihapus" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s dibagikan dengan Anda" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". File yang discan akan muncul secara otomatis di ruang kerja Anda. Lalu, " +"proses dokumen Anda secara bulk dengan split tool: jalankan action yang " +"didefinisikan user, minta tanda tangan, konversi menjadi tagihan vendor " +"dengan AI, dsb." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1 File" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1 Folder" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1 dokumen" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Tip: Menjadi perusahaan yang paperless" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Batalkan memilih halaman ini karena kami berencana untuk memproses " +"semua tagihan terlebih dahulu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Pilih halaman ini untuk melanjutkan." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Powered by" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " Unduh Semua" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " Unduh file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " Pratinjau file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Unggah" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " Ganti file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Dokumen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Record
    Terkait
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Dokumen yang Diminta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;Dokumen." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Permintaan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Dokumen-Dokumen yang Diminta" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Kamus Python yang akan dievaluasi untuk memberikan nilai baku ketika membuat" +" catatan baru untuk alias ini." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "Tujuan diperlukan saat membuat lebih dari satu shortcut sekaligus." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "Folder tidak dapat dimasukkan dalam dirinya sendiri" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "Shortcut tidak boleh menunju ke dirinya sendiri" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Akses" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Akses Eror" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Token Akses" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "Akses semua dokumen Anda" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "Akses dokumen dan partner tidak boleh diubah." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "Akses ke folder atau dokumen" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "Token akses sudah digunakan." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "URL akses" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Tindakan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Tindakan Diperluka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Aktif" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Aktivitas" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Aktivitas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Dekorasi Pengecualian Aktivitas" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Rencana-Rencana Kegiatan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Status Aktivitas" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tipe Aktivitas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ikon Jenis Aktifitas" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Jenis Aktivitas" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"Rencana kegiatan digunakan untuk menugaskan daftar kegiatan dengan beberapa klik saja\n" +" (contoh, \"Proses tandatangan NDA\", \"Workflow workspace\", ...)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Jenis aktivitas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Tambah" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Tambah File" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "Tambahkan Folder" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "Tambahkan Tag Tagihan" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "Tambahkan Tag Divalidasi" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Tambahkan Url" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Tambah file baru" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Tambahkan orang atau alamat email..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "Tambahkan orang atau alamat email:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "Tambahkan shortcut" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "Tambahkan bintang" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "Anda memiliki akses ke dokumen-dokumen tambahan ini." + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrator" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Iklan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Alias Kontak Keamanan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Alias Domain" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Nama Alias Domain" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Alias Email" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Nama Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Status Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "Tag-Tag Alias" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Status alias dinilai pada pesan terakhir yang diterima." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Model Alias" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Semua" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" +"Semua user dengan akses ke %(documentType)s atau induknya akan memiliki izin" +" edit." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "Akses yang Diizinkan" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "Dokumen-Dokumen yang Sudah terhubung: %s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Cara mudah memproses email masuk adalah dengan mengonfigurasi scanner Anda " +"untuk mengirim PDF ke" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Cara mudah memproses email masuk adalah dengan mengonfigurasi scanner Anda " +"untuk mengirim PDF ke email ruang kerja Anda. File yang discan akan muncul " +"secara otomatis di ruang kerja Anda. Lalu, proses dokumen Anda secara bulk " +"dengan split tool: jalankan action yang didefinisikan user, minta tanda " +"tangan, konversikan tagihan vendor dengan AI, dsb." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Error terjadi saat mengunggah." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "Siapa pun di internet dengan link dapat %(action)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Siapapun dengan link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Arsipkan file asli" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Apakah Anda yakin ingin menghapis halaman yang difokus ?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Apakah Anda yakin ingin menghapus halaman yang dipilih" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Apakah Anda yakin ingin menghapus halaman ini ?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "Apakah Anda yakin ingin secara permanen menghapus dokumen?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "Apakah Anda yakin ingin secara permanen menghapus dokumen-dokumen?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Karena PDF ini memiliki lebih dari satu dokumen, mari pisahkan dan proses " +"secara bulk." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Lampiran" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Hitungan Lampiran" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Deskripsi Lampiran" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Nama Lampiran" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Tipe Lampiran" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "Action Embed yang Tersedia" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Bon" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Halaman Kosong" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Brosur" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" +"Dengan mendefinisikan folder, kegiatan mengunggah akan membuat dokumen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Batal" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Turunan" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Pilih record untuk dihubungkan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Pilih atau Konfigurasi Server Email" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Klik pada kartu untuk memilih dokumen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Klik pada thumbnail untuk pratinjau dokumen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Klik pada separator halaman: kita tidak ingin memisahkan dua halaman " +"ini karena mereka berasal dari dokumen yang sama." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Klik silang untuk keluar dari pratinjau." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "Client Dibuat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Tutup" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Tutup split tool" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Warna" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "Root-root umum untuk semua user perusahaan." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Perusahaan" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Pengaturan Konfig" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfigurasi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Konfigurasi" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontak" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Kontrak" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Tombol panel kendali" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Salin Link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "Salin Link-Link" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Buat Kegiatan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "Buat Shortcut" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "Buat Dokumen Rencana Kegiatan " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Buat aktivitas baru" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "Buat edit kontak baru \"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "Buat kontak baru \"" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Tanggal Pembuatan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Pesan Kustom yang Dikembalikan" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Hari" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Nilai Baku" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "Jeda setelah penghapusan permanen dokumen di tong sampah (hari)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Hapus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Hapus halaman yang difokus atau dipilih" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Hapus permanen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Jeda Penghapusan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Jeda penghapusan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Jeda penghapusan (hari)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Usang" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Perincian" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Buang" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" +"Apakah Anda ingin keluar tanpa menyimpan atau mengumpulkan halaman menjadi " +"satu dokumen ?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Dokumen" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "Dokumen / Partner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "Akses Internal Dokumen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "Link Akses Dokumen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Jumlah Dokumen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Nama Dokumen" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Dokument Rencana" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "Pengalihan Dokumen" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Permintaan Dokumen" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Permintaan Dokumen {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "Permintaan Dokument: %(name)s Diunggah oleh: %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Permintaan Dokumen: Pengingat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "Token Dokumen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Pratinjau dokumen" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "Dokumen diunggah oleh %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Dokumen: Permintaan Dokumen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumen" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Link Dokumen ke Record" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Dokumen creation mixin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "Dokumen di Tong Sampah tidak dapat dibagi" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "Documents unlink mixin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Selesai" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Selesai!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Unduh" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "Unduh #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Unduh semua file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Unduh file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "Unduh folder sebagai zip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "Unduh zip #{subfolder.name}" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Draft" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Letakkan file di sini untuk diunggah" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Jatuh Tempo Pada" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipe jatuh tempo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Gandakan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Edit" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Editor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Email Alias" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Alias Email" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "Unggah Email" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Email cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Domain email misal 'contoh.com' di 'odoo@contoh.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "Link-link email" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Error!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Keluar dari Pratinjau/Batalkan Pilihan/Exit" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Keluar dari Split Tool" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Keluar tanpa menyimpan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "Exp:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Pengeluaran" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Kadaluwarsa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Ekspor" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "Komentar tambahan..." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favorit dari" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "File" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Konten File (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Konten File (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Ekstensi File" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Ukuran File" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "File streaming helper model untuk controller" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "File" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Sentralisasi File" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "File akan dikirim ke kotak sampah dan dihapus selamanya setelah" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" +"File-File akan dikirim ke kotak sampah dan dihapus selamanya setelah %s " +"hari." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Keuangan" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Fiskal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Fokus halaman pertama kelompok berikutnya" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Fokus halaman pertama dari kelompok sebelumnya" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Fokus halaman berikutnya" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Fokus halaman sebelumnya" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Folder" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "Folder-folder" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Follower" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Follower (Mitra)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Ikon font awesome, misalnya fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Kumpulkan di satu dokumen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Umum" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "Akses umum" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Dikelompokkan berdasarkan" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Memiliki Pesan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "Sembunyikan shortcut" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Riwayat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Beranda" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID dari catatan induk alias (contoh: proyek yang menahan pembuatan alias " +"tugas)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ikon" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ikon untuk menunjukkan sebuah aktivitas pengecualian." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" +"Bila \"TRUE\", hanya orang yang diberikan akses langsung ke dokumen ini yang" +" dapat melihatnya. Bila \"FALSE\", akses dengan link juga akan diberikan ke " +"semua orang yang dapat mengakses folder induk." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Jika dicentang, pesan baru memerlukan penanganan dan perhatian Anda." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Jika dicentang, beberapa pesan mempunyai kesalahan dalam pengiriman." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Jika di tetapkan, konten ini akan secara otomatis dikirimkan untuk pengguna " +"tanpa wewenang daripada pesan default." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Gambar" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "Mustahil untuk menghapus folder yang digunakan oleh aplikasi lainnya." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" +"Mustahil untuk mengundang partner pada lebih dari satu dokumen sekaligus." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"Mustahil untuk menggerakkan item-item berikut karena ini akan membuat hierarki rekursif:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "Tidak dapat diakses" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Kotak Pesan" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" +"Value tidak tepat. Gunakan salah satu dari berikut untuk field-field " +"berikut: %(hints)s.)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Konten Terindeks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Pengguna Internal" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "Hak User Internal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "User-user internal dapat %(action)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "ID folder tidak valid" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "Operasi tidak valid" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "Peran tidak valid." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Apakah Lampiran Dapat Diedit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Apakah Difavorit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Adalah Follower" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "Apakah dianggap multi-halaman" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" +"Tidak mungkin untuk menggerakan dokumen yang diarsip atau dokumen ke folder " +"yang diarsip." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"Barang yang Anda ingin pulihkan termasuk di folder yang diarsip. Untuk memulihkan barang-barang tersebut, Anda harus memulihkan folder tersebut:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "Barang di tong sampah akan selamanya dihapus setelah %s hari." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" +"Barang yang digerakkan ke tong sampah akan dihapus selamanya setelah %s " +"hari." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "Terakhir Diakses Pada" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Terakhir Diperbarui oleh" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Terakhir Diperbarui pada" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Legal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Ayo proses dokumen di Inbox Anda.
    Tip: Gunakan Tag untuk memfilter " +"dokumen dan organisasikan proses Anda." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Ayo proses tagihan ini: kirim ke ruang kerja Finance." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Ayo proses dokumen ini, datang dari scanner kami." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Ayo tag email ini sebagai legal
    Tip: action dapat disesuaikan ke " +"proses Anda, menurut ruang kerja." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Tautan..." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "Akses Link Disembunyikan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "Hak Akses Link " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "URL Link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Link disalin ke clipboard!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "Link disalin ke papan klip." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "Link disalin ke papan klip!" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Local-part based incoming detection" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Kunci" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Dikunci" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Dikunci oleh" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Log catatan..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Log masuk" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Keluar" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "Email: %s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "Tandai kegiatan sebagai selesai" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "Gabung PDF" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Pesan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Kesalahan Pengiriman Pesan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Pesan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Jenis MIME" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "Kurang referensi dokumen." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Bulan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Pindahkan halaman ini ke tong sampah" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Pindahkan ke Tong Sampah" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Pindahkan ke tong sampah" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "Pindahkan ke tong sampah?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Dipindahkan ke tong sampah" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "Harus memiliki link untuk mengakses" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Aktivitas Saya" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Deadline Kegiatan Saya" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Dokumen saya" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "Drive Saya" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "Peran NULL harus memiliki last_access_date" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nama" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "Nama / Extension" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Baru" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "File baru" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "Folder Baru" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Kelompok Baru" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Kalender Acara Aktivitas Berikutnya" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Batas Waktu Aktivitas Berikutnya" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Ringkasan Aktivitas Berikutnya" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Tipe Aktivitas Berikutnya" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Tidak ada tipe kegiatan yang ditemukan. Ayo buat baru!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "Tidak ada alias yang dikonfigurasi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Tidak ada dokumen yang dipilih" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "Tidak ada barang terpilih" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "Siapa pun di internet dapat mengakses" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Tidak ada link yang di-share" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Tidak Ada" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Bukan file" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "Bukan folder." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Tidak terlampir" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Catatan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Notifikasi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Jumlah Action" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Jumlah kesalahan" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Jumlah pesan yang membutuhkan tindakan" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Jumlah pesan dengan kesalahan pengiriman" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Logo Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Website Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Lebih Tua" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "Hanya Manajer Dokumen yang dapat pin folder." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "Hanya Manajer Dokumen yang dapat menetapkan alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "Hanya Manajer dokumen yang dapat menetapkan alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "Hanya folder root yang dimiliki OdooBot yang dapat di-pin." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "Hanya orang dengan akses yang dapat membuka dengan link" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "Buka #{document_url.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "Buka folder #{subfolder.name}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "Buka panel izin" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" +"Operasi tidak didukung. Silakan gunakan \"Pindahkan ke Tong Sampah\" / " +"`action_archive`." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" +"Operasi tidak didukung. Silakan gunakan \"Pulihkan\" / `action_unarchive`." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"ID Opsional dari file (catatan) di mana semua pesan masuk akan dilampirkan, " +"bahkan jika mereka tidak menjawabnya. Jika diatur, hal ini akan " +"menonaktifkan pembuatan catatan baru sepenuhnya." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "Pesan opsional..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Atau kirim email ke" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Lainnya" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Pemilik" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Pemilik: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "Pemilik: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "Pemilik: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Folder Induk" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Model Induk" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Parent Path" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Catatan Induk ID File" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Model induk dengan alias. Model yang memiliki referensi alias ini tidak " +"selalu berarti model yang diberikan oleh alias_model_id (contoh: proyek " +"(parent_model) dan tugas (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Transfer parsial" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Rekanan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "Orang dengan akses" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Semat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "Di-pin ke root Perusahaan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" +"Silakan login atau hubungi orang yang membagikan link ini untuk informasi " +"lebih lanjut." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Kebijakan untuk mengirimkan pesan di dokumen menggunakan mailgateway.\n" +"- semua orang: setiap orang dapat mengirim\n" +"- rekanan: hanya rekanan yang diijinkan\n" +"- pengikut: hanya pengikut dokumen terkait\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Hadir" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Presentasi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "Pratinjau file-file" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Proyek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Rating" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Terkini" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "Dokumen yang baru saja diakses." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Catatan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Rekam ID Thread" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Halaman-Halaman Tersisa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Email pengingat telah dikirim" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Pengingat untuk mengunggah dokumen Anda{{ object.name and ' : ' + " +"object.name or '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "Cabut Akses" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Hapus Anggota" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "Hapus Tag Inboks" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "Hapus Tag Untuk Memvalidasi" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "Hapus semua tag" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "Hapus bintang" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Ganti nama" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Permintaan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Minta Kegiatan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Minta Untuk" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Minta Dokumen" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Minta file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Diminta\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Dokumen yang Diminta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Dokumen yang Diminta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "Partner yang Diminta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Nama Res Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID Sumber Daya" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Model Sumber Daya" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Nama Sumber Daya" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Penanggung Jawab" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Tanggung-jawab" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Pulihkan" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Dibatasi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Folder Terbatas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "Kembalikan perubahan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Peran" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Kesalahan Pengiriman SMS`" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Penjualan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Simpan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "Simpan atau ubah perubahan terlebih dahulu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "Menyimpan..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Pilih semua" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Pilih halaman yang difokus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Pilih halaman berikutnya" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Pilih halaman berikutnya dari kelompok" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Pilih halaman sebelumnya" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Pilih halaman sebelumnya dari kelompok" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Pilih/Batalkan Pilihan semua halaman" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Kirim" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "Kirim Ke Finance" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Kirim surat ini ke departemen legal, dengan memberikan tag yang tepat." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Kirim ke partner saat meminta dokumen dari mereka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Urutan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "Tetapkan action" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Tetapkan jeda penghapusan untuk dokumen di Tong Sampah" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "Tetapkan tanggal kadaluwarsa" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Tetapkan pengingat di kegiatan untuk menotifikasi user yang tidak menunggah " +"dokumen mereka yang diminta" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Pengaturan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Bagikan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "Share: %(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "Dibagikan dengan saya" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "Sharing..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Jalan Pintas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "Shortcut dibuat" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "Shortcut dibuat di Drive Saya" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "Shortcut hanya dapat dibuat satu per satu." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "Shortcut tidak dapat mengubah dokumen target." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "Shortcut tidak boleh memiliki dokumen." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Ukuran:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Beberapa file tidak dapat diunggah (ukuran maksimum: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Dokumen Sumber" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "Folder spesial tidak boleh dibagi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Pisahkan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Pisah PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "Pisahkan semua white pages" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Pisah halaman yang dipilih" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Membintangi" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status berdasarkan aktivitas\n" +"Terlambat: Batas waktu telah terlewati\n" +"Hari ini: Tanggal aktivitas adalah hari ini\n" +"Direncanakan: Aktivitas yang akan datang." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Tunggu Di sini" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Struktur" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Ringkasan" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Tag" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Nama Tag" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "Tag nama sudah digunakan" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Label" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Teks" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "Teks yang ditunjukkan saat menaruh mouse di atas tag ini" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "Jeda penghapusan harus selalu positif." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "URL dokumen telah disapin ke papan klip Anda." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "Dokumen telah dipindah." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"Dokumen-dokumen berikut tidak boleh memiliki alias:\n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"Dokumen/folder berikut tidak boleh dimiliki oleh User Portal:\n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "Dokumen/shortcut berikut memiliki tipe yang tidak cocok:\n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "Shortcut berikut tidak boleh ditetapkan sebagai induk dokumen:\n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Model (Jenis Dokumen Odoo) di mana alias ini dikaitkan. Email masuk yang " +"tidak menjawab catatan yang sudah ada akan menyebabkan pembuatan rekor baru " +"model ini (misalnya tugas proyek)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Nama email alias, misalnya 'pekerjaan' jika Anda ingin menangkap email untuk" +" " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Bulan Ini" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Minggu Ini" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "Action ini tidak ada." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Lampiran ini sudah menjadi dokumen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "Dokumen ini sudah tidak ada atau tidak tersedia secara publik." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Dokumen ini sudah diminta.\n" +" Unggah." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "Dokumen ini telah dipulihkan." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" +"File ini telah dikirim ke tong sampah dan akan dihapus selamanya pada %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "Folder ini tidak tersedia." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "Ini adalah shortcut" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "Partner ini sudah ditetapkan pada dokumen ini." + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Mereka mewakili kategori-kategori berbeda untuk kegiatan yang harus Anda " +"lakukan (contohnya \"Telepon\" atau \"Kirim email\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Thumbnail" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Status Thumbnail" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Tip: konfigurasikan scanner Anda untuk mengirim semua dokumen ke alamat ini." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Tip: Menjadi perusahaan yang paperless" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Untuk Divalidasi" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Untuk divalidasi" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Hari Ini" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Toggle favorite" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Tooltip" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Sampah" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "Manajemen Sampah" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "TRUE bila kita dapat mengedit lampiran link." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Jenis" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Jenis dari aktivitas pengecualian pada rekaman data." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"URL %s sepertinya tidak selesai, karena tidak dimulai dengan http(s):// atau" +" ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "Gambar Pratinjau URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "Action tidak tersedia." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Buka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Belum ada nama" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Batalkan semat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Unggah" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Unggah file atau tarol ke sini." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Upload permintaan file" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Pengguna" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "Peran Akses User" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Izin user" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "PPN" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Sudah Divalidasi" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Video-Video" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Viewer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Ingin menjadi perusahaan yang paperless? Ayo gunakan Odoo Documents." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Pesan situs" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Sejarah komunikasi situs" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Minggu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "Apa yang And ingin lakukan untuk halaman-halaman yang tersisa ?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"Wow... 6 dokumen diproses dalam beberapa detik, Anda hebat.
    Tur sudah " +"selesai. Coba unggah dokumen Anda sekarang." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Anda" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "Anda tidak diizinkan untuk mengarsip/membatalkan arsip dokumen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "Anda tidak diizinkan untuk mem-pin atau membatalkan pin folder" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" +"Anda tidak diizinkan untuk mengubah kepemilikan dokumen yang Anda tidak " +"miliki." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "Anda tidak diizinkan untuk menghapus semua barang-barang ini." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "Anda tidak diizinkan untuk menjalankan action yang di-embed." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "Anda tidak diizinkan untuk melakukan operasi ini." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "Anda tidak diizinkan untuk pin/membatalkan pin Action yang diembed." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "Anda tidak diizinkan untuk menulis di folder ini." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Anda dapat mengunggah file dari komputer Anda maupun salin/tempel dari " +"tautan internet ke file Anda." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "Anda tidak dapat pin action untuk folder tersebut." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "Anda tidak dapat ping action pada dokumen tersebut." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "Anda tidak dapat ping tipe action tersebut." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "Anda tidak dapat mengupdate akses ke shortcut, update targetnya." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "Anda tidak dapat mengakses folder_id tersebut." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" +"Anda tidak dapat membuat shortcut di atau menggerakan dokumen ke folder " +"spesial ini." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "Anda tidak dapat mengakses folder di tong sampah." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "Anda tidka dapat mengubah pemilik dokumen yang Anda tidak miliki." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "Anda tidak dapat menghapus tag yang digunakan di server action." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "Anda tidak dapat menduplikasikan dokumen di Tong Sampah." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "Anda tidak dapat memindahkan folder atau file saat di tong sampah." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "Anda tidak dapat menghapus partner ini" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" +"Anda tidak dapat membagikan lebih dari satu dokumen pada saat yang sama" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" +"Anda tidak memiliki hak akses mencukupi untuk menghapus dokumen-dokumen " +"tersebut." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "Anda tidak memiliki hak untuk menggerakan dokumen ke folder tersebut" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" +"Anda harus berada di ruang kerja yang dapat dimodifikasi untuk mengunggah " +"file" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "Peran Anda: %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "Ruang individu Anda." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "alias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "bytes" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "hari." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "dokumen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "dokumen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "mis. Diskusi Proposal" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "contohnya Keuangan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "contoh Pengeluaran Hilang" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "contoh Untuk Memvalidasi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "contoh https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "contoh. mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "file-file" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "folder" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "folder," + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "item terpilih" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "pilih" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "membagikan dokumen dengan Anda.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "membagikan folder dengan Anda.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "dibagikan oleh" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "membagikan dokumen ini dengan Anda:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "membagikan folder ini dengan Anda:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "kode status: %(status)s, pesan: %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "tanpa nama" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" URL" diff --git a/addons_extensions/documents/i18n/is.po b/addons_extensions/documents/i18n/is.po new file mode 100644 index 000000000..9f6b78950 --- /dev/null +++ b/addons_extensions/documents/i18n/is.po @@ -0,0 +1,2873 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Heiðar Sigurðsson, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2022-09-22 05:46+0000\n" +"Last-Translator: Heiðar Sigurðsson, 2022\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Access Groups" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Aðgerð" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Þarfnast aðgerðar" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Aðgerðir" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "Virkni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Bæta við" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "Alias Contact Security" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Alias Name" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "Alias domain" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "Aliased Model" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "Setja í geymslu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "Geymt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "Eignir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Attached To" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "Hætta við" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Flokkur" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Fyrirtæki" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Conditions" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Uppsetning" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Tengiliður" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Stofna" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Búið til af" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Stofnað þann" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dagar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Default Values" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Eyða" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Lýsing" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Nafn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Documents" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Lén" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Niðurhal" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Gjöld" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Файл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Fylgjendur" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Fylgjendur (viðskiptafélagar)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Aðgerðir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "Auðkenni" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "ID of the parent record holding the alias (example: project holding the task creation alias)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "If checked, new messages require your attention." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "Is Follower" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Síðast uppfært af" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Síðast uppfært þann" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Late Activities" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Lock" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "Skrá minnispunkt..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Innskráningar nafn" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Skilaboð" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Months" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "My Favorites" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nafn" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Athugasemd" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Fjöldi aðgerða" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Fjöldi skilaboð sem bíða afgreiðslu" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo táknmynd" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Annað" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Eigandi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Parent Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Parent Record Thread ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Record Thread ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Fjarlægja" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Ábyrgðaraðili" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Runa" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Stillingar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Show all records which has next action date is before today" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Size" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Staða" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Samantekt" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Tag" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Flokkar" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "The name of the email alias, e.g. 'jobs' if you want to catch emails for " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Aðgerðir dagsins" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Gerð" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Notandi" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Skilaboð frá vef" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "Website communication history" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Weeks" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "You can either upload a file from your computer or copy/paste an internet link to your file." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "e.g. Discuss proposal" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "" diff --git a/addons_extensions/documents/i18n/it.po b/addons_extensions/documents/i18n/it.po new file mode 100644 index 000000000..855f52ae2 --- /dev/null +++ b/addons_extensions/documents/i18n/it.po @@ -0,0 +1,3940 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Wil Odoo, 2024 +# Marianna Ciofani, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Marianna Ciofani, 2024\n" +"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s bloccato)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "Forse vuoi utilizzare l'azione fissare in alto." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (copia)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "(pagine rimanenti) %s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s file" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s cartelle" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s documenti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s file non sono stati spostati, sono bloccati da un altro utente" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s nuovo/i documento/i creato/i" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s pagina/e eliminata/e" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s condiviso con te" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". I file scansionati appariranno automaticamente nel tuo spazio di lavoro. " +"In seguito, elabora i documenti in massa attraverso lo strumento di " +"divisione: è possibile eseguire azioni personalizzate, richiedere una firma," +" convertire le fatture fornitore con l'IA, ecc." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1 file" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1 cartella" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1 documento" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Consiglio: Diventa un'azienda paperless" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Deseleziona la pagina, pianifichiamo prima l'elaborazione di tutte le" +" fatture." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Seleziona questa pagina per continuare." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Powered by" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " Scarica tutto" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " Scarica file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " Anteprima file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Caricare" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " Sostituisci file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Documenti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Record
    correlato
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Documento Richiesto" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;Documenti." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "Richiesta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Documenti richiesti" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Richiesta documento:
    \n" +" \n" +" Posta finanziaria\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Ciao OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) ti chiede di fornire il seguente documento:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Posta finanziaria\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Esempio di nota.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Fornisci i documenti mancanti prima del 17-05-2021.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documenti\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Richiesta documento:
    \n" +" \n" +" Posta finanziaria\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Ciao OdooBot,\n" +"

    \n" +" ti ricordiamo gentilmente di caricare il documento richiesto:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Posta finanziaria\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Esempio di nota.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Fornisci il documento prima del 17-05-2021.\n" +"

    \n" +" Grazie,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documenti\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Dizionario Python che verrà esaminato per fornire valori predefiniti durante" +" la creazione di nuovi record per l'alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Accesso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Errore di accesso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Token di accesso" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Azione" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Azione richiesta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Attivo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Attività" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Attività" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Decorazione eccezione attività" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Piani attività" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Stato attività" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tipo di attività" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Icona tipo di attività" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Tipi di attività" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"I piani attività vengono utilizzati per assegnare un elenco di attività in pochi clic\n" +" (ad es. \"processo firma accordo di riservatezza\", \"Flusso di lavoro workspace\"...)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Tipo di attività" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Aggiungi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Aggiungi file" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Aggiungere URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Aggiungi nuovo file" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Aggiungi persone o indirizzi e-mail..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "Aggiungi persone o indirizzi e-mail:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Amministratore" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Pubblicità" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Sicurezza contatto alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Dominio alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Nome dominio alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "E-mail alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Nome alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Stato alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Stato alias verificato sull'ultimo messaggio ricevuto." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Modello con alias" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Tutti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Un modo facile di elaborare le e-mail in entrata è di configurare lo scanner" +" per inviare i PDF a" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Un modo facile di elaborare le mail in ingresso consiste nel configurare lo " +"scanner in modo che invii file PDF alla casella di posta di lavoro. I file " +"scansionati compariranno automaticamente nello spazio di lavoro. Poi, " +"processare i documenti in massa tramite lo strumento divisorio: è possibile " +"eseguire azioni personalizzate, richiedere una firma, converire in fatture " +"del fornitore tramite IA, ecc..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Si è verificato un errore durante il caricamento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Chiunque abbia il link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Archivia file originale/i" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Sei sicuro di voler eliminare la pagina dedicata?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Sei sicuro di voler eliminare la/e pagina/e selezionata/e?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Sei sicuro di voler eliminare questa pagina?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "Sei sicuro di voler eliminare il documento in maniera definitiva?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "Sei sicuro di voler eliminare i documenti in maniera definitiva?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Dato che questo PDF contiene più documenti, dividiamolo ed elaboriamoli in " +"blocchi." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Allegato" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Numero allegati" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Descrizione Allegato" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Nome allegato" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Tipo di Allegato" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Fattura" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Pagina vuota" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Opuscoli" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" +"Definendo una cartella, le attività di caricamento genereranno un documento." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Annulla" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Conti figli" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Scegli un record da collegare" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Scegli o configura server e-mail" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Fai clic su una scheda per selezionare il documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Fai clic su una miniatura per una anteprima del documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Fai clic sul separatore di pagina: non vogliamo dividere le pagine " +"perché appartengono allo stesso documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Fai clic sulla croce per uscire dall'anteprima." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "Client generato" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Chiudi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Chiudi strumenti di divisione" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Colore" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Azienda" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni di configurazione" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Configurazione" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Configura" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Contatto" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Contratti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Pulsanti pannello di controllo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Copia collegamento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "Copia link" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Crea attività" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "Crea un piano attività documento" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Creare una nuova attività" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "Crea e modifica nuovo contratto \"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "Crea nuovo contratto \"" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Creato da" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Data creazione" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Data creazione" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Messaggio personalizzato di non recapito" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Giorni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Valori predefiniti" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" +"Ritardo dopo l'eliminazione definitiva del documento nel cestino (giorni)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Elimina" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Elimina pagine dedicate o selezionate" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Elimina in maniera definitiva" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Ritardo eliminazione" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Ritardo eliminazione" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Ritardo eliminazione (giorni)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Non attivo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Dettagli" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Abbandona" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "Vuoi uscire senza salvare o unire le pagine in un unico documento?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Numero documenti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Nome documento" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Piani documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "Rimando documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Richiedere documento" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Richiesta documenti {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "Richiesta documento: %(name)s Caricato da: %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Richiesta documenti: promemoria" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Anteprima documento" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Documenti: richiesta documento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Documenti" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Documenti collegati al record" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Mixin creazione documenti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "Mixin scollegamento documenti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Completato" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Fatto!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Scarica" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "Download #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Scarica tutti i file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Scarica file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "Scarica cartella come zip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "Scarica zip #{subfolder.name}" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Bozza" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Lasciare qui i file da caricare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Data di scadenza tra" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipo di scadenza" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Duplica" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Modifica" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Redattore" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Alias e-mail" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Alias e-mail" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "E-mail in cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Dominio e-mail ad es. \"example.com\" in \"odoo@example.com\"" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Errore" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Abbandona anteprima/Deseleziona/Esci" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Esci da strumenti di divisione" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Esci senza salvare" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Spesa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Scadenza" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Esporta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "Commenti aggiuntivi..." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favoriti di" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "File" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Contenuto del file (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Contenuto del file (grezzo)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Estensione file" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Dimensione file" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Modello di aiuto streaming file per controller" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "File" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Centralizzazione dei file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "File che verranno spostati nel cestino ed eliminati per sempre dopo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" +"File che verranno spostati nel cestino ed eliminati per sempre dopo %s " +"giorni." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Finanziario" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Fiscale" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Focus prima pagina gruppo successivo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Focus prima pagina gruppo precedente" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Focus pagina successiva" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Focus pagina precedente" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Cartella" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "Cartelle" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Seguito da" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguito da (partner)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Icona Font Awesome es. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Unisci in un documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Generale" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Raggruppa per" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Contiene messaggio" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Cronologia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Home" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID del record principale contenente l’alias (esempio: progetto che contiene " +"l’alias di creazione del lavoro)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Icona" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Icona per indicare un'attività eccezione." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Se selezionata, nuovi messaggi richiedono attenzione." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Se selezionata, alcuni messaggi presentano un errore di consegna." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Se impostato, il contenuto verrà inviato automaticamente, al posto del " +"messaggio predefinito, agli utenti non autorizzati." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Immagini" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "In arrivo" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Contenuto indicizzato" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Utenti interni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "È allegato modificabile" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "È preferito" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Sta seguendo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "È considerato multipagine" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" +"Articoli nel cestino che verranno eliminati per sempre dopo %s giorni." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" +"Articoli spostati nel cestino che verranno eliminati per sempre dopo %s " +"giorni." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Legale" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Elaboriamo i documenti nella casella di posta.
    Suggerimento: usa le " +"etichette per filtrare i documenti e strutturare il processo." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" +"Elaboriamo le fatture fornitore: inviale allo spazio di lavoro Finanze." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Elaboriamo il documento, in arrivo dallo scanner." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Etichettiamo l'e-mail come legale
    Suggerimenti: le azioni possono " +"essere adattate al processo, in base allo spazio di lavoro." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Link" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "Link URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "LInk copiato negli appunti!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Rilevamento dell'arrivo di una parte locale" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Blocca" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Bloccato" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Bloccato da" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Registra una nota..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Accedi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Esci" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Messaggio" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Errore di consegna messaggio" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Messaggi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Tipo MIME" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Modello" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modelli" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Mesi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Sposta la pagina nel cestino" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Sposta nel cestino" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Sposta nel cestino" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "Spostare nel cestino?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Spostato nel cestino" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Le mie attività" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Scadenza mie attività" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Documenti" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nome" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "Nome/Estensione" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Nuova" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Nuovo file" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Nuovo gruppo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Prossimo evento del calendario delle attività" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Scadenza prossima attività" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Riepilogo prossima attività" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Tipologia prossima attività" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Nessun tipo di attività trovato. Creiamone uno!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "Nessun alias configurato" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Non è stato selezionato alcun documento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Nessun link condiviso" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Nessuno" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Non un file" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Non allegato" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Nota" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Notifica" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Numero di azioni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Numero di errori" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Numero di messaggi che richiedono un'azione" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Numero di messaggi con errore di consegna" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Logo Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Sito web Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Precedente" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"ID facoltativo di un thread (record) a cui verranno allegati tutti i " +"messaggi in arrivo, anche se non hanno risposto ad esso. Se impostato, " +"disabiliterà completamente la creazione di nuovi record." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "O invia delle e-mail a" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Altro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Proprietario" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Proprietario: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "Proprietario: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "Proprietario: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Cartella principale" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Modello principale" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Percorso primario" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID discussione record principale" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Modello principale contenente l'alias. Il modello che contiene il " +"riferimento alias non è necessariamente quello fornito da alias_model_id " +"(esempio: progetto (parent_model) e lavoro (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Trasferimento parziale" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Fissa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Politica di pubblicazione messaggi su documenti usando il gateway di posta.\n" +"- tutti: tutti possono pubblicare\n" +"- partner: solo partner autenticati\n" +"- follower: solo chi segue il documento collegato o gli iscritti ai relativi canali\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Presente" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Presentazioni" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "Anteprima file" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Progetto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Valutazioni" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Recente" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Record" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Registra ID discussione" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Pagine rimanenti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Le e-mail di promemoria sono state inviate." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Promemoria di aggiornamento dei documenti{{ object.name and ' : ' + " +"object.name or '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Rimuovi membro" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Rinomina" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Richiesta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Richiedi Attività" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Richiedi a" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Richiedere un documento" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Richiedere un file" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Richiesta\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Documento richiesto" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Documenti richiesti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Nome del res model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID risorsa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Modello risorsa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Nome risorsa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Responsabile" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Utente responsabile" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Ripristina" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Limitato" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Cartella con limitazioni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Ruolo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Errore di consegna SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Vendite" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Salva" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Seleziona tutto" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Seleziona pagina dedicata" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Seleziona pagina successiva" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Seleziona pagine successive del gruppo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Seleziona pagina precedente" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Seleziona pagine precedenti del gruppo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Seleziona/deseleziona tutte le pagine" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Invia" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Invia questa lettera all'ufficio legale assegnando le etichette corrette." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "E-mail inviata ai partner quando si richiede loro un documento" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Sequenza" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Configura il ritardo di eliminazione per i documenti nel cestino" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Imposta dei promemoria per le attività per notificare gli utenti che non " +"hanno caricato i documenti richiesti" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Impostazioni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Condividi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "Condividi: %(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "Condivisi con me" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "Condivisione in corso..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Scorciatoia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Dimensione:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Non è stato possibile caricare alcuni file (dimensione max: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Documento di origine" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Dividi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Suddividi PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "Dividi tutte le pagine bianche" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Dividi pagine selezionate" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Preferiti" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Stato basato sulle attività\n" +"In ritardo: scadenza già superata\n" +"Oggi: attività in data odierna\n" +"Pianificato: attività future." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Rimani qui" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Struttura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Riepilogo" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Etichetta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Nome etichetta" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "Nome tag già in uso" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Etichette" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Testo" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "Il ritardo di eliminazione dovrebbe essere positivo." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "Il documento è stato spostato." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Il modello (tipo di documento Odoo) a cui corrisponde questo alias. Le " +"e-mail in ingresso che non rispondono a un record esistente attiveranno la " +"creazione di un nuovo record per questo modello (es. lavoro di un progetto)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Il nome dell’alias e-mail, es. “jobs” per intercettare le e-mail " +"" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Questo mese" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Questa settimana" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "L'azione non esiste." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Questo allegato è già un documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "Il documento non esiste o non è disponibile pubblicamente." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"È stato richiesto questo documento.\n" +" Carica." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "Il documento è stato ripristinato." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" +"Questo file è stato spostato nel cestino e verrà eliminato per sempre il %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "La cartella non esiste." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Questi rappresentanao le diverse categorie di cose che devi fare (ad es. " +"\"Chiama\" o \"Invia e-mail\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Stato anteprima" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Suggerimento: configura il tuo scanner per inviare tutti i documenti a " +"questo indirizzo." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Consiglio: diventa un'azienda senza carta" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Da convalidare" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Da convalidare" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Oggi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Commuta preferito" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Suggerimento" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Cestino" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "Gestione cestino" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Vero se possiamo modificare l'allegato del link." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tipologia" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Tipo di attività eccezione sul record." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"L'URL %s non sembra essere completo perché non inizia con http(s):// o " +"ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "Immagine anteprima URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "Azione non disponibile." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Sblocca" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Senza nome" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Rimuovi dall'alto" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Carica" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Carica un file o trascinalo qui." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Carica richiesta file" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Utente" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Autorizzazione utente" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "Partita IVA" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Validata" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Videos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Visualizzatore" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "Vuoi diventare una azienda senza carta? Scopri Documenti Odoo." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Messaggi sito web" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Cronologia comunicazioni sito web" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Settimane" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "Cosa vuoi fare con le pagine rimanenti?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"Wow... 6 documenti elaborati in pochi secondi, sei grande!
    Il tour è " +"completato, prova ora a caricare i tuoi documenti personali." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Tu" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Puoi inviare un file dal computer o copiare/incollare un indirizzo Internet " +"che è collegato al tuo file." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" +"Per caricare file devi essere in uno spazio di lavoro scrivibile specifico" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "alias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "giorni." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "documenti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "es. Discussione proposta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "es. Finanza" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "es. Spese mancanti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "es. Da Convalidare" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "es. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "ad es. mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "file" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "cartella" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "seleziona" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "ha condiviso un documento con te.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "ha condiviso una cartella con te.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "condiviso da" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "ha condiviso questo documento con te:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "ha condiviso questa cartella con te:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "codice stato: %(status)s, messaggio: %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "senza nome" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" URL" diff --git a/addons_extensions/documents/i18n/ja.po b/addons_extensions/documents/i18n/ja.po new file mode 100644 index 000000000..966648ca0 --- /dev/null +++ b/addons_extensions/documents/i18n/ja.po @@ -0,0 +1,3891 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Martin Trigaux, 2024 +# Wil Odoo, 2024 +# Junko Augias, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Junko Augias, 2024\n" +"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s ロック済)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "恐らく、ピンアクションを使用しようとしているのでしょう。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (コピー)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (残っているページ)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s ファイル" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s フォルダ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s ドキュメント" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s他のユーザによってロックされているため、ファイルが移動されません。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s新規ドキュメントが作成されました " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%sページが削除されました " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s あなたとシェアされました" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +"。スキャンしたファイルは自動的に作業区に表示されます。次に、分割ツールでドキュメントを一括処理します。ユーザ定義アクションの起動、署名の依頼、AIを使用した仕入先請求書への変換など。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1ファイル" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1フォルダ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1ドキュメント" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "ヒント:ペーパーレス企業になるためには" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "全ての請求書を先に処理する予定なので、このページの選択を解除して下さい。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "このページを選択して継続。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Powered by" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "全てをダウンロード" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "ファイルをダウンロード" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " プレビューファイル" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " アップロード" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "ファイルを入替え" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "ドキュメント" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "関連した
    レコード
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "要求済ドキュメント" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;ドキュメント" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " 要求" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "ドキュメント要求" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" ドキュメントリクエスト:
    \n" +" \n" +" 受信トレイ財務\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" こんにちはOdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com)が以下のドキュメントの提供を要求しています:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" 受信トレイ財務\n" +" \n" +"
    \n" +"
    \n" +" \n" +" メモの例\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" 不足しているドキュメントを2021-05-17までに提出して下さい。\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" ドキュメントリクエスト:
    \n" +" \n" +" 受信トレイ財務\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" こんにちは OdooBot,\n" +"

    \n" +" 要求されたドキュメントアップロードのリマインダです。:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" 受信トレイ財務\n" +" \n" +"
    \n" +"
    \n" +" \n" +" メモの例。\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" 不足しているドキュメントを 2021-05-17までに提出して下さい。\n" +"

    \n" +" 宜しくお願い致します。\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "このエイリアスの新しいレコードを作成する時にデフォルト値を与えるためのPython辞書です。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr " 複数のショートカットを一度に作成する場合は、保存先が必要です。" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "フォルダはそれ自体に含めることはできません" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "ショートカットはそれ自体を指すことはできません" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "アクセス" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "アクセスエラー" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "アクセストークン" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "全てのドキュメントにアクセス" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "ドキュメントおよび仕入先へのアクセスを変更することはできません" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "フォルダまたはドキュメントにアクセス" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "アクセストークンが既に使用されています。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "アクセスURL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "アクション" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "要アクション" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "有効化" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "活動" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "活動" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "例外活動文字装飾" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "活動計画" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "活動状態" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "活動タイプ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "活動種別アイコン" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "活動タイプ" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"活動計画は、数回のクリックで活動リストを割当てます。\n" +" (例 \"NDA署名プロセス\"、\"ワークスペースのワークフロー\"...)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "活動タイプ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "追加" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "ファイルを追加" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "フォルダ追加" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "タグ仕入先請求書追加" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "タグ追加が検証されました" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "URL追加" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "新規ファイルを追加" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "人またはメールアドレスを追加..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "人またはメールアドレスを追加:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "ショートカットを追加" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "星を追加" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "追加でアクセスできるドキュメント。" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "管理者" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "広告" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "エイリアス" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "エイリアス連絡先セキュリティ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "エイリアスドメイン" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "エイリアスドメイン名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "エイリアスEメール" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "エイリアス名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "エイリアスステータス" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "エイリアスタグ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "最後に受信したメッセージで評価されたエイリアスステータス" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "エイリアス対象モデル" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "全て" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "この %(documentType)s にアクセスできる全ユーザまたはその親に編集権があります。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "許可されたアクセス" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "既にリンク済のドキュメント: %s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "受信メールを処理する簡単な方法は、スキャナで以下にPDFを送信するように設定することです:" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"受信メールを処理する簡単な方法は、スキャナで作業区EメールにPDFを送信するように設定することです。スキャンしたファイルは自動的に作業区に表示されます。次に、分割ツールでドキュメントを一括処理します:" +" ユーザ定義アクションの起動、署名の依頼、AIを使用した仕入先請求書への変換など。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "アップロード中にエラーが発生しました。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "インターネット上でリンクを持つ人は誰でも %(action)sできます" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "リンクをお持ちの方" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "元のファイルをアーカイブする" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "フォーカスしたページを本当に削除しますか?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "選択したページを本当に削除しますか?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "このページを本当に削除しますか?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "本当にこのドキュメントを完全に削除しますか?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "本当にこのドキュメントを完全に削除しますか?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "このPDFには複数の文書が含まれているので、分割して一括処理しましょう。" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "添付ファイル" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "添付数" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "説明を追加" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "添付ファイル名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "添付タイプ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "利用可能な埋込アクション" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "仕入先請求書" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "空白ページ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "パンフレット" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "フォルダを定義することで、アップロード活動はドキュメントを生成します。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "キャンセル" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "チェックサム/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "子" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "レコードを選択してリンク" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "メールサーバの選択または設定" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "カードをクリックしてドキュメントを選択します。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "サムネイルをクリックしてドキュメントをプレビューします。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "ページセパレータをクリック: この2つのページは同じ文書に属しているので、分割したくありません。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Xをクリックしてプレビューを閉じる" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "生成済顧客" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "閉じる" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "分割ツールを閉じる" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "色" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "会社ユーザ全員に共通のルーツ。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "会社" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "コンフィグ設定" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "設定" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "設定" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "連絡先" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "契約" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "コントロールパネルボタン" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "リンクをコピー" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "リンクをコピー" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "活動を作成" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "ショートカット作成" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "ドキュメント活動計画の作成" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "新規の活動を作成" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "新規連絡先を作成・編集 \"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "新規連絡先を作成 \"" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "作成者" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "作成日" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "作成日" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "カスタムバウンスメッセージ" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "日" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "デフォルト値" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "ドキュメントがゴミ箱から完全に削除されるまでの日数" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "削除" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "フォーカスまたは選択済ページを削除" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "完全に削除" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "削除遅延" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "削除遅延" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "削除遅延(日数)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "廃止" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "詳細" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "破棄" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "保存せずに終了しますか、それともページを1つの文書にまとめますか?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "ドキュメント" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "ドキュメント / 取引先" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "ドキュメントアクセス内部" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "ドキュメントアクセスリンク" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "ドキュメント数" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "ドキュメント名" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "ドキュメント計画" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "ドキュメントリダイレクト" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "ドキュメント要求" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "ドキュメント要求 {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "ドキュメント要求: %(name)sアップロード者 : %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "ドキュメント要求: リマインダ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "ドキュメントトークン" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "ドキュメントプレビュー" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr " %(user)sによりドキュメントをアップロード済" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "ドキュメント: ドキュメント要求" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "ドキュメント" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "レコードするドキュメントリンク" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "ドキュメント作成mixin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "ゴミ箱にあるドキュメントは共有できません" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "ドキュメントリンク解除mixin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "完了" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "完了'" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "ダウンロード" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "ダウンロード #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "全てのファイルをダウンロード" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "ファイルをダウンロード" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "フォルダをzipとしてダウンロード" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "zipをダウンロード #{subfolder.name}" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "ドラフト" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "ファイルをここにドロップしてアップロード" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "期日" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "期限タイプ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "複製" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "編集" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "エディター" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Eメールエイリアス" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Eメールエイリアス" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "Eメールアップロード" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "メールCC" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Eメールドメイン例 'example.com' in 'odoo@example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "Eメールリンク" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "エラー" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "エスケープ プレビュー/選択解除/終了" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "分割ツールから出る" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "保存せずに出る" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "有効期限:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "費用" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "有効期限日" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "エクスポート" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "追加コメント..." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "お気に入り" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "ファイル" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "ファイルコンテンツ(base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "フィールドの内容(生)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "ファイル拡張" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "ファイルサイズ" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "コントローラーのファイルストリーミングヘルパーモデル" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "ファイル" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "ファイルの一元管理" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "ファイルはゴミ箱に移動され、その後永久に削除されます。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "ファイルはゴミ箱に移動され、%s日後永久に削除されます。" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "財務" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "会計" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "次のグループの初めのページにフォーカス" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "前のグループの初めのページにフォーカス" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "次ページにフォーカス" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "前ページにフォーカス" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "フォルダ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "フォルダ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "フォロワー" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "フォロワー (取引先)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font awesomeのアイコン 例. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "1ドキュメントにまとめる" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "一般" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "一般アクセス" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "グループ化" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "メッセージあり" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "ショートカットを隠す" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "履歴" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "ホーム" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "エイリアスを保持する親レコードのID(例:プロジェクトは、タスク作成エイリアスを保持)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "アイコン" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "例外活動を示すアイコン" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" +" \"True\" " +"の場合、このドキュメントに直接アクセスできる人だけが閲覧できます。\"False\"の場合、リンクによるアクセスは親フォルダにアクセスできる全ての人にも許可されます。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "チェックした場合は、新しいメッセージに注意が必要です。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "チェックした場合は、一部のメッセージに配信エラーが発生されました。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "設定されている場合、このコンテンツはデフォルトのメッセージではなく、許可されていないユーザーに自動的に送信されます。" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "画像" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "他のアプリケーションで使用中のフォルダは削除できません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr " 一度に複数のドキュメントで取引先を招待することができません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"以下の項目は、再帰的な階層が作成されるため、移動できません:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "アクセス不可" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "受信箱" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "不正な値です。以下のフィールドには、以下のいずれかを使用して下さい: %(hints)s.)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "索引内容" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "内部ユーザ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "内部ユーザ権" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "内部ユーザは%(action)sできます" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "無効なフォルダID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "無効なオペレーション" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "無効な役割。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "編集可能添付である" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "お気に入り" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "フォロー中 " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "複数ページを含む" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "アーカイブ済ドキュメントやドキュメントをアーカイブフォルダに移動することはできません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"復元したい項目はアーカイブ済フォルダに含まれています。これらのアイテムを復元するには、代わりに以下のフォルダを含めて復元する必要があります:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "項目はゴミ箱に移動され、%s日後永久に削除されます。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "ゴミ箱に移動された項目は、%s日後永久に削除されます。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "最終アクセス" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "法務" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"受信トレイのドキュメントを処理しましょう。
    ヒント: タグを使用してドキュメントをフィルタリングし、プロセスを構造化します" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "これらの請求書を処理しましょう: 会計作業区に送信" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "スキャナから来たこのドキュメントを処理しましょう。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "このメールに合法のタグを付けましょう。
    ヒント: アクションは、作業区に応じて処理に合わせることができます" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "リンク" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "リンクアクセスが隠されています" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "リンクアクセス権" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "リンクURL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "クリップボードにリンクがコピーされました!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "クリップボードにリンクがコピーされました。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "リンクがクリップボードにコピーされました!" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "ローカルパートに基づく着信検知" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "ロック" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "ロック済" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "ロック者" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "メモを記録..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "ログイン" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "ログアウト" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "メール: %s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "活動を完了としてマーク" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "PDFをマージ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "メッセージ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "メッセージ配信エラー" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "メッセージ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "MIMEタイプ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "ドキュメント参照が不明です。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "モデル" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "モデル" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "月" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "このグループをゴミ箱に移動" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "ゴミ箱に移動" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "ゴミ箱に移動" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "ゴミ箱に移動しますか?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "ゴミ箱へ移動" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "アクセス用のリンクが必要です" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "自分の活動" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "活動期限" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "自分のドキュメント" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "マイドライブ" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "NULLロールには、last_access_dateを設定する必要があります。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "名称" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "名前 / 拡張" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "新規" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "新規ファイル" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "新規フォルダ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "新規グループ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "次の活動カレンダーイベント" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "次の活動期限" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "次の活動概要" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "次の活動タイプ" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "活動タイプが見つかりません。作成しましょう!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "作成されたエイリアスがありません" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "ドキュメントが選択されていません" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "項目が選択されていません" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "インターネット上の誰もアクセスできません。" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "共有されたリンクはありません" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "なし" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "ファイルではない" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "フォルダではありません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "添付なし" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "メモ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "通知" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "アクション数" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "エラー数" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "アクションを必要とするメッセージの数" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "配信エラーが発生されたメッセージ数" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odooロゴ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odooウェブサイト" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "さらに前" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "フォルダを固定できるのはドキュメントマネジャーだけです。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "エイリアスを設定できるのはマネジャーだけです。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "エイリアスを設定できるのはマネジャーだけです。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "OdooBotが所有するルートフォルダのみピン留めが可能です。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "アクセス権限のある人だけがリンクから開くことができます。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "開く #{document_url.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "フォルダを開く #{subfolder.name}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "許可パネルを開く" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "操作はサポートされていません。代わりに \"ごみ箱へ移動\" / `action_archive` を使用して下さい。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "操作はサポートされていません。代わりに \"復元\" / `action_unarchive` を使用して下さい。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "すべての受信メッセージに添付されるスレッド(レコード)のオプションIDです。設定した場合は新しいレコードの作成を無効にします。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "オプションメッセージ..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "または、次のドレスにEメールを送ってください。" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "その他" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "オーナー" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "所有者: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "所有者: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "所有者: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "親フォルダ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "親モデル" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "親パス" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "親レコードスレッドID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"エイリアスを保持する親モデル。エイリアスの参照を保持しているモデルは、必ずしもalias_model_idによって与えられたモデルではありません(例:プロジェクト(parent_model)とタスク(model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "部分転送" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "取引先" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "アクセス権のある人" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "ピン" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "会社ルーツにピン済" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "ログインするか、このリンクを共有した連絡先までお問い合わせ下さい。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"メールゲートウェイを使用したメッセージドキュメント投稿のポリシー\n" +"- everyone: 誰にでも投稿可能\n" +"- partners: 許可されたパートナーのみ\n" +"- followers: 関連ドキュメントのフォロワーか、フォローしているチャンネルのメンバーのみ\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "在席" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "プレゼンテーション" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "プレビューファイル" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "プロジェクト" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "評価" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "最近の" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "最近アクセスしたドキュメント。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "レコード" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "レコードのスレッドID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "残りのページ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "リマインダメールが送信されました。" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "ドキュメントアップロードのリマインダ{{ object.name and ' : ' + object.name or '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "アクセス権を削除" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "メンバーを削除" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "タグ受信箱を削除" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "未検証タグを削除" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "全タグを削除" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "星を削除" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "名前の変更" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "要求" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "活動を要求" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "要求先" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "ドキュメントを要求" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "ファイルを要求" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "要求済" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "要求されたドキュメント" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "要求済ドキュメント" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "リクエストされた取引先" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "回答モデル名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "リソースID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "リソースモデル" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "リソース名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "担当者" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "担当ユーザ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "リストア" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "制限済" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "制限付きフォルダ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "変更を元に戻す" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "役割" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS配信エラー" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "販売" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "保存" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "まず変更を保存または削除して下さい" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "保存中..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "全て選択" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "フォーカス済ページを選択" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "次ページを選択" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "グループの次ページを選択" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "前ページを選択" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "グループの前ページを選択" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "全ページを選択/選択解除" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "送信" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "財務に送信" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "適切なタグを付けて、この手紙を法務部に送ります。" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "ドキュメントを要求するときに取引先に送信" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "シーケンス" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "アクションを設定" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "ゴミ箱にあるドキュメントの削除遅延を設定する" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "有効期限を設定" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "活動でリマインダを設定し、要求されたドキュメントをアップロードしなかったユーザに通知します。" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "管理設定" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "共有" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "共有: %(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "自分とシェア済" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "シェア中..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "ショートカット" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "ショートカットが作成されました" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "マイドライブにショートカットが作成されました" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "ショートカットは1度に1つのみ作成可能です。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "ショートカットのターゲット先ドキュメントを変更することはできません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "ショートカットはドキュメントを含むことはできません。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "サイズ:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "いくつかのファイルはアップロードできませんでした (最大サイズ: %s)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "参照元" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "特別フォルダは共有することはできません" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "分割" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "PDFを分割" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "全ての白いページを分割" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "選択済ページを分割" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "スター付き" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"活動に基づくステータス\n" +"遅延: 期限が既に過ぎています\n" +"今日: 活動日は今日です\n" +"予定: 将来の活動。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "このページに留まる" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "構成" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "概要" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "タグ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "タグ名" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "タグ名は既に使用されています" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "タグ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "テキスト" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "このタグにカーソルを置いたときに表示されるテキスト" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "削除遅延は正にして下さい。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "ドキュメントURLがクリップボードにコピーされました。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "ドキュメントが移動されました。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"次のドキュメントはエイリアスを持つことはできません:\n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"次のドキュメント/フォルダはポータルユーザが所有することはできません: \n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "次のドキュメント/ショートカットにタイプ不一致があります: \n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "次のショートカットはドキュメント親として設定できません: \n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"このエイリアスに対応した(Odooドキュメント種別)モデル。既存のレコードに返信しない任意の受信メールは、このモデルの新しいレコード(例えば、プロジェクトタスク)の作成を引き起こします" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "eメールのエイリアス.例えばのメールを受け取りたい場合'jobs’を選択" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "今月" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "今週" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "このアクションは存在しません。" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "この添付は既にドキュメントです" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "このドキュメントは存在しないまたは公開されていません。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"このドキュメントが要求されました。\n" +"     アップロードして下さい" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "このドキュメントは復元されました。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "このファイルは、ゴミ箱に移動され、永久に削除されます%s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "このフォルダは存在しません。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "これはショートカットです" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "この取引先はこのドキュメントに既に設定されています。" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "これらは、やるべきことの様々なカテゴリを表します(例:'電話する'や'Eメールを送る')" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "サムネイル" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "サムネイルステータス" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "このアドレスにすべてのドキュメントを送信するようにスキャナを設定します。" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "ヒント:ペーパーレス企業になるためには" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "未検証" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "承認する" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "今日" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "お気に入り切替" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "ツールチップ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "ゴミ箱" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "ゴミ箱管理" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "リンク添付を編集できる場合はTRUE" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "タイプ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "記録上の例外活動の種類。" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "URL %sは完全ではないようです。 http(s):// または ftp:// で始まっていません。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "URLプレビュー画像" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "利用不可能なアクション。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "ロック解除" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "無名" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "固定を解除" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "アップロード" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"アップロードファイルまたはここにドラッグ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "ファイル要求をアップロード" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "ユーザ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "ユーザアクセスロール" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "ユーザ許可" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "VAT(Value Added Tax)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "検証済" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "ビデオ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "ビューア" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "ペーパーレスな会社を目指しますか?Odooドキュメントを試してみましょう。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "ウェブサイトメッセージ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "ウェブサイト通信履歴" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "週" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "残りのページをどうしますか?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"なんと数秒で6つのドキュメントが処理されました。素晴らしい。
    ツアーは終了です。今度はご自身のドキュメントをアップロードしてみましょう。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "あなた" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "ドキュメントをアーカイブ(解除)する権利はありません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "フォルダをピン(解除)する権利がありません" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "自分が所有者ではないドキュメントの所有権を変更する権利はありません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "これら全ての項目を削除する権利はありません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "埋込アクションを実行することは許可されていません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "この操作を実施する権利はありません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "埋込アクションの固定/固定解除は許可されていません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "このフォルダに書込む権利はありません。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "利用中のコンピュータから、もしくはインターネットのリンクをコピーペーストでファイルをアップロードすることができます。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "あのフォルダに対してアクションをピンすることはできません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "あのドキュメントに対してアクションをピンすることはできません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "あのタイプのアクションをピンすることはできません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "ショートカットのアクセス権を更新することはできません。代わりにターゲットを更新して下さい。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "あのfolder_idにアクセスすることはできません。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "この特別なフォルダにショートカットを作成したり、ドキュメントを移動したりすることはできません。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "ゴミ箱内のフォルダにアクセスすることはできません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "所有していないドキュメントの所有者を変更することはできません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "サーバアクションで使用されているタグは削除できません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "ゴミ箱のドキュメントは複製できません。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "ゴミ箱内のフォルダやファイルを移動することはできません。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "この取引先を削除できません。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "1度に複数のドキュメントを共有できません。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "これらのドキュメントを削除するアクセス権はありません。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "あのフォルダにドキュメントを移動する権利はありません。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "ファイルをアップロードするには特定の書き込み可能なワークスペースにいる必要があります。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "あなたのロール: %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "あなた個人のスペース。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "エイリアス" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "バイト" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "日数" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "ドキュメント" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "ドキュメント" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "例: 提案内容説明" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "例: 財務" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "例:未提出経費" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "例: 未検証" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "例: https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "例: mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "ファイル" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "フォルダ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "フォルダ、" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "選択済アイテム" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "選択" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "あなたとドキュメントを共有しました。
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "あなたとフォルダを共有しました。
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "共有者:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "あなたとこのドキュメントを共有しました:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "あなたとこのフォルダを共有しました:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "ステータスコード: %(status)s、メッセージ: %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "無名" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" URL" diff --git a/addons_extensions/documents/i18n/km.po b/addons_extensions/documents/i18n/km.po new file mode 100644 index 000000000..503c52c42 --- /dev/null +++ b/addons_extensions/documents/i18n/km.po @@ -0,0 +1,2871 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Chan Nath , 2018 +# Samkhann Seang , 2018 +# Sengtha Chay , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2018-08-24 11:37+0000\n" +"Last-Translator: Sengtha Chay , 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"Language: km\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "ក្រុមសិទ្ធិអនុញ្ញាត" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Access Token" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "សកម្មភាព" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "សកម្មភាព" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "បន្ថែម" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "ឯកសារ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "លុបចោល" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "ប្រភេទ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "ក្រុមហ៊ុន" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "កំណត់ផ្លាស់ប្តូរ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "ទំនាក់ទំនង" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "បង្កើតដោយ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "បង្កើតនៅ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "ការពិពណ៌​នា​" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "ឯកសារ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "ឯកសារ" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "ទាញយក" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "សារ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "ឈ្មោះ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "កំណត់សំគាល់" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "ម្ខាស់" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "លំដាប់" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "ធែក" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "ធែក" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "ប្រភេទ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "សារវែបសាយ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "ប្រវត្តិទំនាក់ទំនងវែបសាយ" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "" diff --git a/addons_extensions/documents/i18n/ko.po b/addons_extensions/documents/i18n/ko.po new file mode 100644 index 000000000..5cc2786a9 --- /dev/null +++ b/addons_extensions/documents/i18n/ko.po @@ -0,0 +1,3897 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Wil Odoo, 2024 +# Sarah Park, 2024 +# Daye Jeong, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Daye Jeong, 2024\n" +"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s 잠금)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "핀 동작을 사용하려는 것일 수 있습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (사본)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (남은 페이지)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s 파일" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s 폴더" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s 문서" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "다른 사용자에 의해 잠겨있기 때문에 %s 파일을 이동할 수 없습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "새 문서 %s가 생성되었습니다" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s페이지가 삭제되었습니다" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "이 폴더를 공유한 %s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". 스캔한 파일은 작업 공간에 자동으로 나타납니다. 이후, 분할 도구를 통해 문서를 일괄 처리합니다. 사용자 지정 작업을 시작하거나 서명" +" 요청 혹은 AI를 사용하여 공급업체 청구서로 변환하는 등의 작업이 가능합니다. " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "파일 1개" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "폴더 1개" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "문서 1건" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "팁: 종이 없는 회사를 만듭니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "먼저 업체 청구서를 모두 처리할 예정이오니 페이지를 선택 해제하세요." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "계속하려면 이 페이지를 선택합니다." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    제공" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " 전체 다운로드" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " 파일 다운로드" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " 미리보기 파일" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " 업로드" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " 파일 바꾸기" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "문서" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "관련된
    레코드
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "요청된 문서" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;문서." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " 요청" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "요청된 문서" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" 문서 요청:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" 안녕하세요, OdooBot님,\n" +"

    \n" +" OdooBot (odoobot@example.com)님이 다음과 같은 문서를 요청하고 있습니다.\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" 누락된 문서는 링크 만료일 전 (예정일: 2021-05-17)까지 업로드 해주시기 바랍니다.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" 문서 요청:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" 안녕하세요, OdooBot님.\n" +"

    \n" +" 요청된 문서가 업로드되지 않아 안내 메시지 드립니다.\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" 누락된 문서는 링크 만료일 전 (예정일: 2021-05-17)까지 업로드 해주시기 바랍니다.\n" +"

    \n" +" 감사합니다.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "이 별칭에 대한 새 레코드를 만들 때 기본값을 제공하도록 평가되는 Python 사전입니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "한 번에 여러 개의 바로가기를 만들 때는 목적지가 필요합니다." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "폴더는 폴더 자체에 포함될 수 없습니다." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "바로 가기는 자신을 가리킬 수 없습니다." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "사용 권한" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "접근 에러" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "사용 권한 토큰" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "모든 문서에 액세스" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "문서 및 파트너에 대한 액세스는 수정할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "폴더 또는 문서에 대한 액세스" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "이미 사용한 토큰에 액세스" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "액세스 URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "추가 작업" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "조치 필요" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "활성화" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "활동" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "활동" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "활동 예외 장식" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "활동 계획" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "활동 상태" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "활동 유형" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "활동 유형 아이콘" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "활동 유형" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"작업 계획은 몇 번의 클릭으로 작업 목록을 배정하는 데 사용됩니다.\n" +" (e.g. \"NDA 서명 절차\", \"작업 공간 워크플로우\", ...)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "업무 유형" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "추가" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "파일 추가" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "폴더 추가" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "청구서 태그 추가" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "승인 태그 추가" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "URL 추가" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "새로운 파일 추가" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "사람 또는 이메일 주소 추가" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "사람 또는 이메일 주소를 추가하세요:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "바로 가기 추가" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "별표 추가" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "액세스할 수 있는 추가 문서" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "관리자" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "추가" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "별칭" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "별칭 연락처 보안" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "별칭 도메인" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "별칭 도메인 이름" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "이메일 별칭" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "별칭 이름" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "별칭 상태" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "별칭 태그" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "최근 받은메일에서 확인한 별칭 상태입니다." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "별칭 모델" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "전체" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "이 %(documentType)s 또는 상위 문서에 대한 액세스 권한이 있는 모든 사용자에게 편집 권한이 있습니다." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "허용된 액세스" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "이미 연결된 문서: %s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "다음의 이메일로 PDF 파일을 받도록 스캐너 설정을 해 두시면 수신 메일을 쉽게 처리할 수 있습니다:" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"받은 메일을 쉽게 처리하려면 작업 공간으로 PDF 파일을 전송하도록 스캐너 설정을 해놓으시면 됩니다. 스캔한 파일은 작업 공간에 자동으로" +" 나타납니다. 이후, 분할 도구를 통해 문서를 일괄 처리합니다 사용자 지정 작업을 시작하거나 서명 요청, AI를 사용하여 공급업체 " +"청구서로 변환하는 등의 작업이 가능합니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "업로드 중에 오류가 발생했습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "링크를 가진 사람은 누구나 %(action)s을 할 수 있습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "링크가 있는 사람 누구나" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "원본 파일 보관" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "포커스가 맞춰진 페이지를 삭제하시겠습니까?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "선택한 페이지를 정말로 삭제하시겠습니까?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "이 페이지를 정말로 삭제하시겠습니까?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "이 문서를 완전히 삭제할까요?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "이 문서를 완전히 삭제할까요?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "이 PDF 에는 여러 개의 문서가 포함되어 있으므로, 분할하여 일괄 처리하겠습니다." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "첨부 파일" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "첨부 파일 수" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "첨부 파일 설명" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "첨부 파일명" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "첨부 파일 유형" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "사용 가능한 임베디드 액션" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "청구" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "빈 페이지" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "브로셔" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "폴더를 정의하면 업로드 활동이 문서를 생성합니다" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "취소" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "체크섬/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "하위" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "연결할 레코드 선택" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "이메일 서버를 선택 또는 설정하세요." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "문서를 선택하려면 카드를 클릭하세요." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "문서 미리보기를 하려면 썸네일을 클릭하세요." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "페이지 구분 기호를 선택하세요. 같은 문서에 있는 두 페이지이므로 분할하지 않습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "X 표시를 클릭하여 미리보기를 종료합니다." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "클라이언트 생성" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "닫기" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "분할 도구 닫기" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "색상" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "모든 회사 사용자를 위한 공통 루트." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "회사" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "환경설정" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "설정" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "설정" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "연락처" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "계약" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "제어판 버튼 " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "링크 복사" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "링크 복사" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "활동 생성" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "바로 가기 만들기" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "문서 작업 계획 생성" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "새로운 활동 만들기" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "새 연락처 만들기 및 편집 \"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "새 연락처 만들기 \"" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "작성자" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "작성일자" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "작성일자" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "고객 반송 메시지" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "일" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "기본값" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "휴지통에 있는 문서를 완전히 삭제하기까지의 기간 (날짜 수)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "삭제" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "포커스 또는 선택된 페이지 삭제" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "완전히 삭제하기" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "삭제 대기" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "삭제 대기" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "삭제 대기 (날짜 수)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "감가상각됨" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "세부 정보" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "취소" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "표시명" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "저장하지 않고 종료하거나 페이지를 하나의 문서로 모으시겠습니까?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "문서" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "문서 / 파트너" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "내부 문서 액세스" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "문서 액세스 링크" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "문서수" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "문서명" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "문서 계획" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "문서 리디렉션" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "문서 요청" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "문서 요청 {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "문서 요청: %(name)s 업로드한 사람: %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "문서 요청: 알림" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "문서 토큰" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "문서 미리보기" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "%(user)s가 업로드한 문서" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "문서: 문서 요청" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "문서" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "레코드로 문서 연결" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "문서 작성 혼합물" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "휴지통에 있는 문서는 공유할 수 없습니다." + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "문서 연결 해제 믹스인" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "완료" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "완료!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "다운로드" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "다운로드됨 #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "전체 파일 다운로드" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "파일 다운로드" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "폴더를 zip으로 다운로드" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "Download zip #{subfolder.name}" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "초안" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "파일을 올릴려면 여기에 끌어다 놓으세요" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "만기일" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "만기 유형" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "복사" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "편집" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "편집기" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "이메일 별칭" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "이메일 별칭" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "이메일 업로드" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "이메일 참조" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "이메일 도메인 예: 'odoo@example.com'의 'example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "이메일 링크" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "오류" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "미리보기 나가기/선택 해제/종료" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "분할 도구 종료" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "저장하지 않고 종료" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "예상:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "경비" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "만료일" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "내보내기" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "추가 댓글..." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "즐겨찾기" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "파일" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "파일 컨텐츠(base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "파일 컨텐츠(raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "파일 확장자" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "파일 크기" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "컨트롤러용 파일 스트리밍 헬퍼 모델" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "파일" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "파일 중앙화" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "파일을 휴지통으로 이동하여 다음 날짜 이후 완전히 삭제합니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "파일을 휴지통으로 이동하여 %s일 이후 완전히 삭제합니다." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "재무" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "회계" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "다음 그룹의 첫 페이지에 포커스 맞추기" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "이전 그룹의 첫 페이지에 포커스 맞추기" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "다음 페이지에 포커스" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "이전 페이지에 포커스" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "폴더" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "폴더" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "팔로워" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "팔로워 (협력사)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "멋진 아이콘 폰트 예: fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "하나의 문서로 모으기" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "일반" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "일반 액세스" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "그룹별" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "인사" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "메시지가 있습니다" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "바로 가기 숨기기" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "기록" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "홈" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "별칭을 담고 있는 상위 레코드의 ID (예: 별칭을 생성한 작업을 담고 있는 프로젝트)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "아이콘" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "예외 활동을 표시하기 위한 아이콘" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" +"\"True\"로 설정하면 이 문서에 직접 액세스할 수 있는 사용자만 문서를 볼 수 있습니다. “False\"로 설정하면 상위 폴더에 " +"대한 액세스 권한이 있는 사람을 포함하여 링크를 가진 모든 사람이 문서를 볼 수 있습니다." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "만약 선택하였으면, 신규 메시지에 주의를 기울여야 합니다." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "이 옵션을 선택하면 일부 정보가 전달 오류를 생성합니다." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "설정할 경우, 권한이 없는 사용자에게 기본 메시지 대신 이 내용을 전송합니다. " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "이미지" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "다른 앱에서 사용하고 있는 폴더는 삭제할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "여러 문서에 동시에 파트너를 초대할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +" 다음 항목은 재귀적 계층 구조가 생성되므로 이동할 수 없습니다:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "접근 불가" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "수신함" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "잘못된 값입니다. 다음 필드에 다음 중 하나를 사용합니다: %(hints)s.)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "색인화된 콘텐츠" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "내부 사용자" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "내부 사용자 권한" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "내부 사용자는 %(action)s을 할 수 있습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "잘못된 폴더 ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "잘못된 작업" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "잘못된 역할입니다." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "편집 가능한 첨부 파일입니다." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "즐겨찾기에 포함되어 있음" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "팔로워임" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "페이지가 여러 장 있는 것으로 간주합니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "보관된 문서 또는 보관된 폴더에 있는 문서는 이동할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"복원하려는 항목이 보관된 폴더에 있습니다. 이러한 항목을 복원하려면 대신 다음 폴더도 복원해야 합니다:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "휴지통에 있는 항목은 %s일 후 완전히 삭제됩니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "휴지통으로 이동된 항목은 %s일 후 완전히 삭제됩니다." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "마지막 액세스 날짜" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "최근 갱신 일자" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "합법" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "받은 메일함에서 문서를 처리해봅시다.
    도움말: 문서 필터와 작업 구축에 태그를 활용하세요." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "이 업체 청구서를 처리해봅시다. 재무 작업 공간으로 전송합니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "스캐너에서 전송된 이 문서를 처리해봅시다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"이 메일에 법률 관련 태그를 지정합시다.
    도움말: 작업 공간에 따라서 프로세스에 맞게 작업을 조정할 수 있습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "링크" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "링크 액세스 숨김" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "링크 액세스 권한" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "링크 URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "링크가 클립보드에 복사되었습니다!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "링크가 클립보드에 복사되었습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "링크가 클립보드에 복사되었습니다!" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "로컬 부품 기반 입고 감지" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "잠금" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "잠김" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "잠근 사람" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "메모 기록" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "로그인 ID" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "로그아웃" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "메일: %s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "활동을 완료로 표시" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "PDF 병합" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "메시지" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "메시지 전송 오류" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "메시지" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "MIME 유형" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "누락된 문서 참조" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "모델" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "모델" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "월" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "이 페이지를 휴지통으로 이동" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "휴지통으로 이동" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "휴지통으로 이동" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "휴지통으로 이동할까요?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "휴지통으로 이동" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "액세스하려면 링크가 있어야 합니다." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "내 활동" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "내 활동 마감일" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "내 문서" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "내 드라이브" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "NULL 역할에는 last_access_date가 설정되어 있어야 합니다." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "이름" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "이름 / 내선번호" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "신규" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "새 파일" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "새 폴더" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "새 그룹" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "다음 활동 캘린더 행사" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "다음 활동 마감일" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "다음 활동 요약" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "다음 활동 유형" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "활동 유형이 없습니다. 지금 생성해 주세요." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "별칭이 구성되어 있지 않음" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "선택된 문서가 없습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "선택한 항목 없음" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "인터넷에서 아무도 액세스할 수 없음" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "공유된 링크가 없습니다." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "없음" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "파일이 아닙니다" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "폴더가 아닙니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "첨부되지 않았습니다" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "노트" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "알림" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "작업 수" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "오류 횟수" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "조치가 필요한 메시지 수" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "전송 오류가 발생한 메시지 수입니다." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo 로고" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo 웹사이트" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "장기" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "문서 관리자만 폴더를 고정할 수 있습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "문서 관리자만 별칭을 설정할 수 있습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "문서 관리자만 별칭을 설정할 수 있습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "OdooBot 소유의 루트 폴더만 고정할 수 있습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "액세스 권한이 있는 사용자만 링크를 통해 문서를 열 수 있습니다." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "Open #{document_url.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "Open folder #{subfolder.name}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "권한 패널 열기" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "지원되지 않는 작업입니다. \"휴지통으로 이동\" 또는 `action_archive`를 사용하세요." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "지원되지 않는 작업입니다. 복원' 또는 `action_unarchive`를 사용하세요." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"회신하지 않은 것까지 모든 받는 메시지를 첨부할 스레드(레코드)의 선택사항 ID. 설정하면 완벽하게 새로운 레코드의 생성을 억제합니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "선택적 메시지..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "또는 다음으로 이메일을 전송합니다." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "기타" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "소유자" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "소유자: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "Owner: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "Owner: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "상위 폴더" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "상위 모델" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "상위 경로" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "상위 레코드 스레드 ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"별칭이 있는 상위 모델입니다. 별칭 참조를 포함하는 모델은 반드시 alias_model_id(예: 프로젝트(parent_model) 및 " +"태스크(model)에서 제공하는 모델일 필요는 없습니다.)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "부분 이전" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "협력사" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "액세스 권한이 있는 사람" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "핀 고정" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "회사 루트에 고정" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "자세한 내용은 로그인하거나 링크를 공유한 사람에게 문의하세요." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Mailgateway를 사용하여 문서에 메시지를 게시하는 정책.\n" +"- 모든 사용자: 모든 사용자가 게시할 수 있습니다\n" +"- 협력사: 인증된 협력사만 게시할 수 있습니다\n" +"- 팔로워: 관련 문서의 팔로워 또는 팔로잉 중인 채널의 사용자만 게시할 수 있습니다\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "출근" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "프리젠테이션" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "파일 미리보기" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "프로젝트" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "평가" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "최근" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "최근에 액세스한 문서 수" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "기록" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "레코드 스레드 ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "잔여 페이지" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "이메일 알림이 전송되었습니다." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "문서를 업로드하도록 알림 {{ object.name and ' : ' + object.name or '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "액세스 제거" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "구성원 삭제" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "받은 편지함 태그 제거" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "승인할 태그 제거" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "모든 태그 제거" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "별표 제거" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "이름 바꾸기" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "요청" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "요청 활동" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "요청 대상" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "문서 요청" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "파일 요청" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"요청됨\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "요청한 문서" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "요청 서류" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "요청자 파트너" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "자원 모델 이름" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "리소스 ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "리소스 모델" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "리소스명" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "담당자" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "담당 사용자" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "복원" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "제한" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "제한 폴더" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "변경 사항 되돌리기" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "역할" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS 전송 에러" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "판매" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "저장" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "먼저 변경 내용 저장 또는 삭제" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "저장 중..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "전체 선택" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "포커스된 페이지 선택" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "다음 페이지 선택" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "그룹의 다음 페이지 선택" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "이전 페이지 선택" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "그룹의 이전 페이지 선택" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "모든 페이지 선택/선택 해제" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "보내기" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "재무팀으로 보내기" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "알맞은 태그를 지정하여 이 메일을 법무팀으로 전송하세요." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "파트너에게 문서를 요청해야 할 경우 파트너에게 전송" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "순서" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "작업 설정" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "휴지통에 있는 문서에 대한 삭제 대기 설정" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "만료일 설정" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "요청한 문서 업로드를 하지 않은 사용자에게 안내하기 위해 활동 알림을 설정" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "설정" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "공유" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "공유: %(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "나와 공유" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "공유 중..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "바로가기" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "바로 가기 생성" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "내 드라이브에 바로 가기 만들기" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "바로가기는 한 번에 하나씩 만들어야 합니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "바로가기는 대상 문서를 변경할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "바로가기에 문서를 포함할 수 없습니다." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "크기 :" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "일부 파일을 업로드할 수 없습니다 (최대 크기: %s)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "원본 문서" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "특수 폴더는 공유할 수 없습니다" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "분할" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "PDF 분할" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "모든 화이트 페이지 분할" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "선택한 페이지 분할" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "별표" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"활동 기준 상태\n" +"기한 초과: 기한이 이미 지났습니다.\n" +"오늘: 활동 날짜가 오늘입니다.\n" +"예정: 향후 계획된 활동입니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "현재 페이지 유지" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "구조" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "요약" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "태그" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "태그 이름" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "이미 사용된 태그 이름" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "태그" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "문자" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "이 태그에 커서를 올리면 표시되는 텍스트" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "삭제 대기 항목은 양수여야 합니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "문서 URL이 클립보드에 복사되었습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "문서가 이동되었습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"다음 문서에는 별칭을 사용할 수 없습니다: \n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"포털 사용자는 다음 문서/폴더를 소유할 수 없습니다:\n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "다음 문서/바로 가기에 유형이 일치하지 않습니다.: \n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "다음 바로가기는 상위 문서로 설정할 수 없습니다:\n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"이 별칭에 해당하는 모델(Odoo 문서 종류)입니다. 모든 받는 메일은 기존 레코드로 기록되지 않고 이 모델의 새 레코드로 작성됩니다. " +"(예. 프로젝트 작업)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"에 대한 이메일을 수신하도록 하려면 이메일의 별칭 이름을 적어주세요. 예: 'jobs'" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "이번 달" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "이번 주" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "이 작업은 존재하지 않습니다." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "이 첨부 파일은 이미 문서입니다" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "이 문서는 존재하지 않거나 공개적으로 사용할 수 없습니다." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"이 문서를 요청받았습니다.\n" +" 업로드하세요." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "이 문서가 복원되었습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "해당 파일을 휴지통으로 이동하여 %s 항목에서 완전히 삭제합니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "이 폴더가 존재하지 않습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "바로 가기입니다" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "이 파트너가 이미 이 문서와 연결되어 있습니다." + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "이는 수행해야 하는 작업에 대한 다양한 카테고리를 나타냅니다 (예: \"전화\" 또는 \"이메일 전송\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "미리보기 이미지" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "썸네일 상태" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "도움말: 스캐너 설정을 하면 이 주소로 모든 문서를 전송합니다." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "도움말: 종이없는 회사를 만들어 보세요." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "승인하기" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "승인하기" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "오늘" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "즐겨찾기 토글" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "툴팁" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "휴지통" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "휴지통 관리" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "True 값인 경우 첨부 링크를 편집할 수 있습니다." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "유형" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "레코드에 있는 예외 활동의 유형입니다." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "URL %s이 http(s):// 또는 ftp:// 으로 시작하지 않습니다." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "URL 미리보기 이미지" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "사용할 수 없는 작업" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "잠금 해제" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "이름 없음" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "핀 고정 해제" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "업로드" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +" 파일을 업로드 하시거나 여기로 드래그 하세요." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "요청받은 파일 업로드" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "사용자" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "사용자 액세스 권한" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "사용자 승인" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "부가가치세" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "승인됨" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "동영상" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "뷰어" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "종이 없는 회사를 만들고자 하시나요? Odoo 문서를 확인해보세요." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "웹사이트 메시지" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "웹사이트 대화 이력" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "주" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "남은 페이지로 무엇을 하시겠습니까?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"대단합니다. 몇 초 만에 6건의 문서를 처리했습니다. 잘하셨습니다.
    투어를 마치셨습니다. 이제 내 문서를 업로드해보세요. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "귀하" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "문서를 보관(해제)할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "폴더를 고정(해제)할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "소유하지 않은 문서의 소유권을 변경할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "이 모든 항목을 삭제할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "임베드된 동작을 실행하는 것은 허용되지 않습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "이 작업을 수행할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "임베드된 액션은 고정/고정 해제할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "이 폴더에 쓰기가 허용되지 않습니다." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "컴퓨터에서 파일을 업로드하거나 인터넷 링크를 복사하여 파일에 붙여넣기 할 수 있습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "해당 폴더에 대한 고정 작업은 허용되지 않습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "이 문서에 대한 작업 핑은 허용되지 않습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "해당 유형의 작업은 핑이 허용되지 않습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "바로가기에 대한 액세스는 직접 업데이트할 수 없습니다. 대신 대상을 수정하세요." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "해당 folder_id에 액세스할 수 없습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "이 특수 폴더에는 바로 가기를 만들거나 이동할 수 없습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "휴지통에 있는 폴더에는 액세스할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "소유하지 않은 문서의 소유권은 이전할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "서버 동작에 사용된 태그는 삭제할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "휴지통에는 문서를 복제할 수 없습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "휴지통에 있는 폴더나 파일은 이동할 수 없습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "이 파트너를 제거할 수 없습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "한 번에 여러 문서를 공유할 수 없습니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "이 문서를 삭제할 수 있는 충분한 권한이 없습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "해당 폴더로 문서를 이동하는 데 필요한 권한이 없습니다." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "파일을 업로드하려면 쓰기 가능한 특정 작업 공간에 있어야 합니다." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "귀하의 권한: %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "나만의 공간." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "별칭" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "바이트" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "일." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "문서" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "문서" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "예: 업무 협의 제안" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "예. 재무" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "예: 경비 누락" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "예: 승인하기" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "예: https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "예: mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "파일" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "폴더" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "폴더," + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "선택된 항목" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "선택" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "문서를 공유했습니다.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "폴더를 공유했습니다.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "다음에 의해 공유됨" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "이 문서를 공유했습니다:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "이 폴더를 공유했습니다:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "상태 코드: %(status)s, 메시지: %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "이름 없음" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" URL" diff --git a/addons_extensions/documents/i18n/lb.po b/addons_extensions/documents/i18n/lb.po new file mode 100644 index 000000000..1bb7a3255 --- /dev/null +++ b/addons_extensions/documents/i18n/lb.po @@ -0,0 +1,2869 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Xavier ALT , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2019-08-26 09:35+0000\n" +"Last-Translator: Xavier ALT , 2019\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfiguratioun" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "" diff --git a/addons_extensions/documents/i18n/lt.po b/addons_extensions/documents/i18n/lt.po new file mode 100644 index 000000000..b7de1a822 --- /dev/null +++ b/addons_extensions/documents/i18n/lt.po @@ -0,0 +1,2892 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# UAB "Draugiški sprendimai" , 2022 +# Rolandas , 2022 +# Audrius Palenskis , 2022 +# Arunas Vaitekunas , 2022 +# Šarūnas Ažna , 2022 +# Arminas Grigonis , 2022 +# grupoda2 , 2022 +# Antanas Muliuolis , 2022 +# Silvija Butko , 2022 +# Monika Raciunaite , 2022 +# digitouch UAB , 2022 +# Martin Trigaux, 2022 +# Linas Versada , 2022 +# Arunas V. , 2023 +# Jonas Zinkevicius , 2023 +# Ramunė ViaLaurea , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2022-09-22 05:46+0000\n" +"Last-Translator: Ramunė ViaLaurea , 2023\n" +"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "%s Dokumentai" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "%s Dokumentai (%s užrakinti)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s filas(-ai) nebuvo perkelti, kadangi kitas vartotojas juos užrakino" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr ", pasibaigė" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr ". Nuskenuoti failai bus automatiškai rodomi Jūsų darbo erdvėje. Tada apdorokite dokumentus masiškai naudodami padalijimo įrankį: paleiskite naudotojo nustatytus veiksmus, prateikite parašų užklausas, konvertuokite į sąskaitas su Dirbtiniu Intelektu ir t. t." + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "2022" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Patarimas: Tapkite įmone, kuri dirba skaitmeninėje erdvėje" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "Bitai" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "Atšaukite šio puslapio pasirinkimą, kadangi pirmiausia planuojame apdoroti visas sąskaitas." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "Gb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "Kb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "Mb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Platforma" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr "Atsisiųsti visus" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr " Atsisiųsti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr " Eiti į nuorodą" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "Python žodynas, kuris bus įvertinamas numatytųjų reikšmių nustatymui, kai šiam pseudonimui sukuriami nauji įrašai." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "Sąlygų ir veiksmų, kurie bus prieinami visiems sąlygas atitinkantiems priedams, rinkinys" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "Darbo erdvė paveldės tėvinės darbo erdvės žymas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Prieiga" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Prieigos klaida" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Prieigos grupės" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "Prieigos teisės " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Prieigos raktas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Veiksmas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "Veiksmo mygtuko vardas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "Veiksmų skaičius" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "Veiksmo pavadinimas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Reikalingas veiksmas" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Veiksmai" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "Aktyvus" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "Veiklos" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "Veikla" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Veiklos Išimties Dekoravimas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "Užrašas vekloje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Veiklos būsena" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Veiklos tipas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Veiklos tipo ikona" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "Veiklos tipas" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Pridėti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Pridėti failą" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Pridėti nuorodą" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "Pridėti nuorodą" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Pridėti naują failą" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administratorius" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "Reklamos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Pseudonimas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "Pseudonimo kontakto apsauga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Pseudonimo vardas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "Pseudonimo domenas" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "Pseudonimo modelis" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "Visi failai buvo įkelti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "Leidžia" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "Leidžia Jums valdyti Jūsų dokumentus" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "Jau susieti dokumentai" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "Lengvas būdas apdoroti gaunamus laiškus - sukonfigūruoti skenerį siųsti PDF failus į:" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "Lengvas būdas apdoroti gaunamus laiškus - sukonfigūruoti skenerį taip, kad jis siųstų PDF failus į darbo vietos el. paštą. Nuskenuoti failai bus automatiškai rodomi Jūsų darbo erdvėje. Tada apdorokite dokumentus masiškai naudodami padalijimo įrankį: paleiskite naudotojo nustatytus veiksmus, paprašykite parašo, konvertuokite į sąskaitas naudojant DI ir t. t." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "Archyvuoti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Archyvuoti orginalų(-ius) failą(-us)" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "Archyvuotas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "Kadangi šiame PDF dokumente yra keli dokumentai, suskirstykime ir apdorokime juos masiškai." + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "Prašyti patvirtinimo" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "Ilgalaikis turtas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Prisegtas" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Prisegtukas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "Prisegtukų skaičius" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Prisegtuko aprašas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Prisegtuko pavadinimas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Prisegtuko tipas" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "Automatizuokite gaunamųjų laiškų dėžutę naudodami nuskaitytus dokumentus arba el. laiškus, siunčiamus į pasto-dezute-finansai pašto adresą." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "Prieinamos taisyklės" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "Mokėjimas" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "Prekės ženklas 1 " + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "Prekės ženklas 2" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "Lankstinukai" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "Apibrėžus aplanką, atliekant įkėlimo veiksmus bus sukurtas dokumentas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "Gali įkelti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "Atšaukti" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "Kategorizuokite, bendrinkite ir stebėkite visus savo vidinius dokumentus." + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Kategorija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Kontrolinės sumos / SHA1" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "Pasirinkite susiejamą įrašą" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Paspauskite ant kortelės, tam kas pasirinkti dokumentą." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Paspauskite ant dokumento paveikslėlio, tam kad peržiūrėtumėte dokumentą." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "Paspauskite ant puslapio skirtuko: mes nenorime padalyti šių dviejų puslapių, nes jie priklauso tam pačiam dokumentui." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Uždaryti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Įmonė" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "Sąlygos tipas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Sąlygos" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfigūracija" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "Konfigūruoti el. pašto severius" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontaktas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "Turi" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "Sutartys" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Sukurti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "Sukurti dalinimosi nuorodą" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "Sukurti naują veiklą" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Sukūrė" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Sukūrimo data" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "Sąlygos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Pasirinktinis peradresuotas pranešimas" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dienos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Numatytosios reikšmės" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "Numatytosios įkeltų dokumentų reikšmės" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Trinti" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "Nurašyti" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "Nusidėvėjęs" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Aprašymas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Atmesti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "Dokumentas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Dokumentų skaičius" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Dokumento pavadinimas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "Dokumento savininkas(-ė)" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Dokumento užklausa" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "Dokumento užklausa {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "Dokumento paprašė: %s įkėlė: %s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "Dokumentų sąrašas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumentai" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Domenas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Atsisiųsti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "Atsisiųsti visus dokumentus" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "Atsisiųsti ir įkelti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "Termino data po" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "Termino tipas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Redaguoti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "El. pašto pseudonimas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "El. Pašto CC" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Klaida" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "Išskiriamos žymos" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Išlaida" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "Negalioja" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Failas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Filo turinys (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Failo dydis" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Failų centralizacija" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "Finansai" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "Susiję su finansais" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "Fiskalinis" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "Finkaliniai metai" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "Aplankalas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Sekėjai" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Sekėjai (partneriai)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font awesome piktograma, pvz., fa-tasks" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Būsimos veiklos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "Grupuoti pagal" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "Grupėms leidžiama matyti darbo erdvę ir skaityti joje esančius dokumentus be sukūrimo/redagavimo teisių." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "Grupėms leidžiama matyti darbo erdvę bei skaityti/sukurti/redaguoti joje esančius dokumentus." + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "Žmogiškieji ištekliai" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "Turi žinutę" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Istorija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "Tėvinio įrašo ID, kuris laiko savyje dukterinį įrašą (pvz.: projektas, laikantis sukurtas užduotis)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Piktograma" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Išimties veiklą žyminti piktograma." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Jeigu pažymėta, naujiems pranešimams reikės jūsų dėmesio." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Jei pažymėta, yra žinučių, turinčių pristatymo klaidų." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "Jei nustatyta, šis turinys bus automatiškai išsiųstas neįgaliotiems vartotojams, vietoj numatyto pranešimo." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "Paveikslėlis / Vaizdo įrašas" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "Paveikslėliai" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Gauti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "Ateinantys el. laiškai bus siunčiami į pašto dėžutės adresas bus pridėti į Jūsų pašto dėžutę automatiškai." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indeksuotas turinys" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "Vidinis" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Yra redaguojamas prisegtukas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "Yra sekėjas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "Žinynas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Vėluojančios veiklos" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Nuoroda" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "Gyvai" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Užrakinti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "Užrakinta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Užrakino" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "Registruoti pastabą..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Prisijungimas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Atsijungti" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "Atstatyti į juodraštį" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "Pažymėti kaip atliktą" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "Rinkodara" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "Žinutės pristatymo klaida" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Žinutės" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "MIME tipas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "Įvairūs" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Šablonas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modeliai" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Mėnesiai" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "Perkelti į pašto dėžutę" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "Perkelti į darbo erdvę" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "Kelios reikšmės" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Veiklos paskutinis terminas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Mano dokumentai" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "Mano mėgstamiausi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Pavadinimas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "Dalinamosios nuorodos vardas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "Naujas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Nauja byla" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Nauja grupė" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Kitas veiklos kalendoriaus įvykis" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Kito veiksmo terminas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Kito veiksmo santrauka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Kito veiksmo tipas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Nepažymėtas nei vienas dokumentas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "Pasidalintų nuorodų nerasta" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Ne failas" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Nėra prisegtukų" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Pastaba" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Veiksmų skaičius" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "Klaidų kiekis" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Žinučių, kurioms reikia jūsų veiksmo, skaičius" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Žinučių su pristatymo klaida skaičius" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "\"Odoo\" logotipas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo puslapis" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "Vieno įrašo limitas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "Atidaryti komunikacijos langą" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "Pasirinktinis įrašo ID, prie kurio bus prisegti visi įeinantys laiškai, net jei į jį ir neatsakė. Jei nustatyta, tai visiškai išjungs naujų įrašų kūrimą." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Arba siųsti el. laiškais į" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Kita" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "Tik mano sukurti dokumentai" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "Tik mano sukurti dokumentai (įrašyti)" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Savininkas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "PDF/Dokumentas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Tėvinis modelis" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "Tėvinis kelias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Tėvinio įrašo temos ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "Tėvinė darbo erdvė" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "Tėvinis modelis, turintis pseudonimą. Modelis turintis pseudonimo nurodą nebūtinai yra modelis, suteiktas alias_model_id (pvz.: projektas (parent_model) ir užduotis (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Žinutės paskelbimo prie dokumento politika naudojant pašto serverį.\n" +"- visi: visi gali paskelbti\n" +"- partneriai: tik patvirtinti partneriai\n" +"- sekėjai: tik susijusio dokumento sekėjai arba sekančių kanalų nariai\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Yra darbo vietoje" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "Prezentacijos" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "Projektas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "Rodyti prieigą" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "Peržiūros teises turinčios grupės" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Įrašas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Įrašo temos ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "Susijusios darbo erdvės" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Likę puslapiai" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Pašalinti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "Pakeisti" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "Pakeisti naudojant" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Užklausa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Veiklos užklausa" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Paprašyti dokumento" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Paprašyti failo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "Užklausa išsiųsta" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Paprašytas dokumentas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "Būtinos žymos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Res modelio pavadinimas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Išteklių ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Išteklių modelis" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Išteklių pavadinimas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Atsakingas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Atsakingas vartotojas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Atstatyti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS pristatymo klaida" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "Pardavimai" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Išsaugoti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "Suplanuoti veiklą" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "Siųsti juristams" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Seka" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "Nustatyti kontaktą" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "Nustatyti savininką" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "Nurodyti žymas" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "Nustatyti veiksmą dokumento savininkui" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Nustatymai" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "Dalintis" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "Dalintis nuorodomis" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "Dalintis nuoroda" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "Dalintis nuorodomis" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "Dalintis šiuo domenu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "Dalintis šiuo pasirinkimu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "Dalinimosi tipas" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "Pasidalinta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "Pasidalinti dokumentai" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "Pasidalintos žymos" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "Dalinimaisi ir el. laiškai" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Rodyti visus įrašus, kurių sekančio veiksmo data yra ankstesnė nei šiandiena" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Dydis" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "Susietas atitinkamas modelis " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "Išskaidyti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "Padalinti PDF failą" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Būsena" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Būsena, paremta veiklomis\n" +"Vėluojantis: Termino data jau praėjo\n" +"Šiandien: Veikla turi būti baigta šiandien\n" +"Suplanuotas: Ateities veiklos." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "Dukterinės darbo erdvės" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Santrauka" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Žyma" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "Žymų kategorijos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "Žymos kategorija" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Žymos pavadinimas" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "Žyma jau egzistuoja šiam aspektui" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Žymos" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "Šablonai" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "Tekstas" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "Modelis (\"Odoo\" dokumento rūšis), su kuriuo susijęs šis pseudonimas. Visi gaunami laiškai, kurie neatsako į egzistuojantį įrašą, sukurs naują šio modelio įrašą (pvz. projekto užduotį)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "El. pašto pseudonimo pavadinimas, pvz. \"darbai\", jei norite gauti " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "Įrašų, sukuriamų gaunant laiškus šiuo vardu, šeimininkas. Jei šis laukas nėra nustatytas, sistema bandys surasti tikrąjį šeimininką pagal siuntėjo (nuo) adresą arba naudos administratoriaus paskyrą, jei tam adresui sistemoje nerandamas vartotojas." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatiūra" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "Reikia patvirtinti" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Reikia patvirtinti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Šiandienos veiklos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "Paaiškinimas" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tipas" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Įrašytos išimties veiklos tipas." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Atrakinti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Be pavadinimo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "Įkelti" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "Įkelti dokumentą" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "Įkelti naudojant el. paštą" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Vartotojas" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "PVM" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "Galioja iki" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "Patvirtinti" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "Patvirtinta" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "Video" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Interneto svetainės žinutės" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "Svetainės komunikacijos istorija" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Savaitės" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "Darbo erdvė" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "Darbo erdvės" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "Redagavimo teisė" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "Redagavimo teises turinčios grupės" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "Jūs galite arba įkelti failą iš savo kompiuterio, arba nukopijuoti / įdėti internetinę nuorodą į savo failą." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "Neturite vartotojo teisių perkelti dokumentų į tą darbo sritį" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "Youtube vaizdo įrašas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "trinti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "dokumentas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "dokumentai" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "dokumentai pasirinkti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "atsisiųsti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "pvz. pasiūlymo aptarimas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "pvz.: Finansai" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "pvz.: Trūkstama išlaida" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "pvz.: Būsena" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "pvz.: Patvirtinti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "pvz.: Patvirtinti dokumentą" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "pavadinimas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "atkurti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "pasirinkti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "pasirinkta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "pasidalino" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "būsenos kodas: %s, žinutė: %s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "be pavadinimo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "nuoroda" diff --git a/addons_extensions/documents/i18n/mn.po b/addons_extensions/documents/i18n/mn.po new file mode 100644 index 000000000..17caf9c57 --- /dev/null +++ b/addons_extensions/documents/i18n/mn.po @@ -0,0 +1,3698 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Munkhbaatar g , 2024 +# Baasansuren Sharavsuren , 2024 +# Гэрэлтцог Цогтбаатар, 2024 +# 486aab72cd7cb5d98a82d40b0db4c5f2_4397374 <25b041e3e1ecd3f217ca34118196bd3e_836923>, 2024 +# Nurbahyt Kh , 2024 +# Munkhbilguun Altankhuyag , 2024 +# Uuganbayar Batbaatar , 2024 +# Bayarkhuu Bataa, 2024 +# tumenjargal hadbaatar , 2024 +# hish, 2024 +# Otgonbayar.A , 2024 +# Batmunkh Ganbat , 2024 +# Torbat Jargalsaikhan, 2024 +# Батболд , 2024 +# tserendavaa tsogtoo , 2024 +# Baskhuu Lodoikhuu , 2024 +# Martin Trigaux, 2024 +# Batmunkh Ganbat , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Batmunkh Ganbat , 2024\n" +"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (хуулбар)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" +"%s файл(ууд) зөөгдсөнгүй. Учир нь өөр хэрэглэгч эдгээрийг түгжсэн байна." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    -ээс дэмжигдсэн " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Байршуулах" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Баримтууд" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Холбоотой
    Бичлэг
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Шаардсан баримт" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Хүсэлт" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Санал болгосон баримт" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Энэ алиас-д холбогдуулан шинэ бичлэг үүсгэх үед анхны утгуудыг тодорхойлох " +"Python dictionary." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Хандалт" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Хандалтын Алдаа" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Хандах Токен" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Үйлдэл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Үйлдэл шаардлагатай" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Идэвхтэй" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Ажилбар" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Ажилбар" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Ажилбарын тайлбар" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Ажилбарын төлөв" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Ажилбарын төрөл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ажилбарын төрлийн зураг" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Ажилбарын төрөл" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Ажилбарын төрөл" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Нэмэх" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "URL нэмэх" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Администратор" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Зар сурталчилгаа" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Ерөнхий нэр" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Алиас хандалтын нууцлалт" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Дөмэйний Өөр нэр" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Алиас нэр" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Алиастай модел" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Бүх" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Хавсралт" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Хавсралтын тоо" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Хавсралтын тайлбар" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Хавсралтын нэр" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Хавсралтын төрөл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Нэхэмжлэл" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Товхимол" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Цуцлах" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Чекийн дүн/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Дэд" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Хаах" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Өнгө" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Компани" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Тохиргооны тохируулга" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Тохиргоо" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Тохируулга" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Харилцах хаяг" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Гэрээнүүд" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Удирдлагын самбарын товчлуурууд" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Холбоос хуулах" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Шинэ ажилбар үүсгэх" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Үүсгэсэн этгээд" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Үүсгэсэн огноо" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Үүсгэсэн огноо" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Өдөр" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Анхны утгууд" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Устгах" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Хэрэглэгдэхгүй" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Дэлгэрэнгүй" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Үл хэрэгсэх" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Баримт" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Нийт баримтын тоо" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Баримтууд" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Дууссан" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Татаж авах" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Ноорог" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Файлуудыг байршуулахдаа энд чирнэ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Хугацаа дуусах" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Төлбөрийн төрөл" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Хуулбарлан үүсгэх" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Засах" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Засварлагч" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Ерөнхий имэйл" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Имэйл алиас" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Имэйл CC" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Алдаа" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Зардал" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Хүчинтэй огноо" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Экспорт" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Эрхэмлэгч" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Файл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Файлын хэмжээ" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Файл" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Хавтас" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Дагагчид" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Дагагчид (Харилцагчид)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font awesome icon ж.ш. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Ерөнхий" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Бүлэглэлт" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "Хүний нөөц" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Мессежтэй" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Түүх" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Нүүр хуудас" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"Хуурмаг нэрийг агуулагч эцэг бичлэгийн ID (жишээ: даалгавар үүсгэсэн хуурмаг" +" нэрийг агуулж байгаа төсөл)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Дүрс" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ажилбар дээр сануулга гарсныг илэрхийлэх зураг." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Хэрэв сонгогдсон бол, шинэ зурвасууд таны анхаарлыг шаардана." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Үүнийг сонговол алдаа үүсэх үед зурвасууд ирнэ." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Зураг" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Inbox" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Индекслэсэн агуулга" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Дотоод Хэрэглэгчид" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Дагагч эсэх" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Сүүлд зассан этгээд" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Сүүлд зассан огноо" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Линк" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Түгжих" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Түгжигдсэн" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Түгжигдсэн байна" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Тэмдэглэл хөтлөх..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Нэвтрэх" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Гарах" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Зурвас" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Зурвас илгээх алдаа" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Зурвасууд" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "MIME-Төрөл" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Модел" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Модел" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Сар" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Миний ажилбарууд" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Миний ажилбарын эцсийн огноо" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Миний баримтууд" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Нэр" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Шинэ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Календар дээрх дараагийн Үйл ажиллагаа" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Дараагийн ажилбарын эцсийн огноо" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Дараагийн ажилбарын гарчиг" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Дараагийн ажилбарын төрөл" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Байхгүй" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Файл биш байна" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Хавсаргаагүй" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Тэмдэглэл" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Мэдэгдэх" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Үйлдлийн тоо" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Алдааны тоо" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Алдааны мэдэгдэл бүхий зурвасын тоо" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo лого" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo вэбсайт" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Хуучин" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Бүх ирж буй зурвасуудыг багцын ID бөгөөд зурвасууд нь хариулт биш байсан ч " +"хамаагүй холбогдоно. Хэрэв тохируулвал шинэ бичлэг үүсэх явдлыг бүхэлд нь " +"идэвхигүй болгоно." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Бусад" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Эзэмшигч" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Эцэг модель" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Эцэг зам" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Эцэг салбар бичлэгийн ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Хуурмаг нэрийг хадгалагч эцэг модель. Хуурмаг нэрийн сурвалж хадгалагч " +"модель нь alias_model_id -р өгөгдөх модель байх албагүй (жишээ: төсөл " +"(parent_model) ба даалгавар (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Харилцагч" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"mailgateway ашиглан баримтанд зурвас илгээх бодлого.\n" +"- бүгд: бигд илгээж болно\n" +"- харилцагчид: зөвхөн баталгаажсан харилцагчид\n" +"- дагагчид: баримтын зөвхөн дагагчид эсвэл сувгийн гишүүд\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Байна" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Танилцуулгууд" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Төсөл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Үнэлгээнүүд" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Бичлэг" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Бичлэгийн Мөчирийн ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Нэр өөрчлөх" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Хүсэлт" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Баримт бичгийн хүсэлт" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Файлын хүсэлт" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Хүсэлт гаргасан баримтууд" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Нөөц ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Нөөц модел" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Нөөцийн нэр" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Хариуцагч" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Эд хариуцагч" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Сэргээх" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Дүр" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS илгээлтийн алдаа" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Борлуулалт" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Хадгалах" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Төлөх" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Дугаарлалт" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Тохиргоо" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Хуваалцах" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Товчлол" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Хэмжээ:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Эх үүсвэр баримт" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Хуваах" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Одоор тэмдэглэсэн" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Ажилбаруудын төлөв байдал\n" +"Хоцорсон: Гүйцэтгэх огноо нь аль хэдий нь өнгөрсөн\n" +"Өнөөдөр: Өнөөдөр гүйцэтгэх ёстой\n" +"Төлөвлөгдсөн: Ирээдүйд гүйцэтгэх ажилбарууд" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Бүтэц" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Хураангуй" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Пайз" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Пайзын нэр" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Пайз" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Текст" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Хуурмаг нэрийн харгалзах модель (Odoo-н баримтын төрөл). Байгаа бичлэг рүү " +"хариулаагүй бүх ирж буй имэйл нь энэ моделийн шин бичлэгийг үүсгэнэ (Ж. " +"Төслийн даалгавар)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Имэйл алиасын нэр, ж.нь. хаягийн имэйлийг хүлээн " +"авах бол 'jobs'" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Энэ сар" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Энэ долоо хоног" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Хураангуй" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Баталгаажуулах" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Баталгаажуулахын тулд" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Өнөөдөр" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Багажны зөвлөмж" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Төрөл" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Бичлэг дээрх асуудал бүхий ажилбарын төрөл" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Түгжээг нээх" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Нэргүй" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Оруулах" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Хэрэглэгч" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "НӨАТ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Батлагдсан" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Видеонууд" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Харагч" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Вебсайтын зурвас" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Вебсайтын харилцааны түүх" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "7 хоног" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Та компьютерээсээ файл ачааллах эсвэл файл руу интернэт холбоосыг хуулж " +"тавих боломжтой." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "баримт" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "ж. Саналыг хэлэлцэх" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "хуваалцсан" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/nb.po b/addons_extensions/documents/i18n/nb.po new file mode 100644 index 000000000..cc1167f3a --- /dev/null +++ b/addons_extensions/documents/i18n/nb.po @@ -0,0 +1,2882 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Fredrik Ahlsen , 2022 +# Viktor Basso , 2022 +# Mads Søndergaard, 2022 +# Jens Nymoen , 2022 +# Jorunn D. Newth, 2022 +# Cécile Collart , 2022 +# Lars Aam , 2022 +# Marius Stedjan , 2022 +# Martin Trigaux, 2022 +# Henning Fyllingsnes, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2022-09-22 05:46+0000\n" +"Last-Translator: Henning Fyllingsnes, 2023\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "Gb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr " Last ned alle" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr " Last ned" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "Python-dictionary som brukes til å sette standardverdier på nye poster for dette aliaset." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Tilgang" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Tilgangsfeil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Tilgangsgrupper" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "Tilgangsrettigheter" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Tilgangstoken" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Handling" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "Handlingsnavn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Handling påkrevd" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Handlinger" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "Aktiv" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "Aktiviteter" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "Aktivitet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Dekorering for Aktivitetsunntak" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Aktivitetsstatus" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Aktivitetstype" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ikon type Aktivitet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "Aktivitetstype" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Legg til" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrator" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Aliasnavn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "Aliasdomene" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "Alle filer er lastet opp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "Arkivert" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "Arkivert" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "Eiendeler" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Vedlagt" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Vedlegg" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "Antall vedlegg" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Vedleggsnavn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "Faktura" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "Kan laste opp" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "Kanseller" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Kategori" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Sjekksum/SHA1" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Lukk" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Firma" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Vilkår" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfigurasjon" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "Inneholder" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "Kontrakter" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Opprett" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Opprettet av" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Opprettet" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Opprettelsesdato" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dager" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Standardverdier" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Slett" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Beskrivelse" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Avbryt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Dokumentnavn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumenter" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "Dokumenter Arbeidsområde" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Domene" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Last ned" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Rediger" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "E-postalias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Feil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Utlegg" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "Utløpt" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favoritt for" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Fil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Fil innholde (base 64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Fil innhold (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Filstørrelse" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Følgere" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Følgere (partnere)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font Awesome-ikon, for eksempel fa-tasks" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Fremtidige aktiviteter" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "Grupper etter" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "Har melding" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Historikk" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ikon" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ikon for å indikere aktivitetsunntak." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Hvis haket av, vil nye meldinger kreve din oppmerksomhet." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Hvis haket av, har enkelte meldinger leveringsfeil." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "Bilder" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Innboks" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indeksert innhold" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "Intern" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "Er følger" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "Kunnskap" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Forsinkede aktiviteter" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Link" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Lås" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "Låst" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "Loggfør notat..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Innlogging" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Utlogging" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "Markedsføring" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "Melding ved leveringsfeil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Meldinger" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "MIME-type" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "Diverse" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Modell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modeller" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Måneder" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "Flytt til Arbeidsområde" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "Flytt til overordnet arbeidsområde" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "MIn aktivitets tidsfrist" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "Favorittene mine" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Navn" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "Ny" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "Nytt Arbeidsområde" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Neste kalender aktivitet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Frist for neste aktivitet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Oppsummering av neste aktivitet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Neste aktivitetstype" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Notat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Antall handlinger" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "Antall feil" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Antall meldinger som krever handling" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Antall meldinger med leveringsfeil" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo-logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Annen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Eier" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Overordnede modell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "Overordnet sti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "Overordnet Arbeidsområde" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Presentere" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "Presentasjoner" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "Prosjekt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "Lesetilgang" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Post" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Post-id på Tråd" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "Relatert Arbeidsområde" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Fjern" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Forespørsel" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Ressurs-ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Ressursmodell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Ressursnavn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Ansvarlig" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Ansvarlig bruker" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Gjenopprett" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS Leveringsfeil" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "Salg" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Lagre" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "Planlegg aktivitet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Sekvens" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Innstillinger" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "Del" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "Del valgt Arbeidsområde" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "Delt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Vis alle poster som har neste handlingsdato før dagen i dag" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Størrelse" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "Del opp" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Status" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status basert på aktiviteter\n" +"Utgått: Fristen er allerede passert\n" +"I dag: Aktiviteten skal gjøres i dag\n" +"Planlagt: Fremtidige aktiviteter." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "Underordnet Arbeidsområde" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Oppsummering" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Etikett" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Etikettnavn" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Etiketter" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "Maler" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "Tekst" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "Dette Arbeidsområdet vil være tilgjengelig for valgt selskap" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatyrbilde" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "Til Validering" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Dagens aktiviteter" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "Hjelpetekst" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Type" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Type unntaks-aktivitet på posten." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Lås opp" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Uten navn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "Last opp" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "Last opp dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Bruker" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "MVA" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "Gyldig til" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "Valider" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "Validert" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "Videoer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Meldinger fra nettsted" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr " Kommunikasjonshistorikk for nettsted" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Uker" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "Hva vil du gjøre med filene i Arbeidsområdet?" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "Arbeidsområde" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "Arbeidsområde" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "Skrivetilgang" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "Du har ikke rettigheter til å flytte dokumenter til dette Arbeidsområdet." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "Du har ikke rettigheter til å flytte dokumenter til dette Arbeidsområdet." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "slett" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "dokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "for eksempel Diskuter forslag" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "navn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "url" diff --git a/addons_extensions/documents/i18n/nl.po b/addons_extensions/documents/i18n/nl.po new file mode 100644 index 000000000..6db22062e --- /dev/null +++ b/addons_extensions/documents/i18n/nl.po @@ -0,0 +1,3994 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Wil Odoo, 2024 +# Erwin van der Ploeg , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Erwin van der Ploeg , 2024\n" +"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s vergrendeld)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr " Misschien bedoel je de pinactie." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (kopie)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (Resterende pagina's" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s Bestanden" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s Mappen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s documenten" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" +"%s bestand(en) niet verplaatst omdat ze zijn vergrendeld door een andere " +"gebruiker" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s nieuwe documenten aangemaakt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s pagina's verwijderd" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s met jou gedeeld" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Gescande bestanden verschijnen automatisch in je werkruimte. Verwerk " +"vervolgens je documenten in bulk met de splitstool: start door de gebruiker " +"gedefinieerde acties, vraag een handtekening, converteer naar " +"leveranciersfacturen met AI, enz." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1 Bestand" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1 map" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1 document" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Tip: Word een papierloos bedrijf" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Schakel deze pagina uit, aangezien we van plan zijn om eerst alle " +"facturen te verwerken." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Selecteer deze pagina om verder te gaan." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Aangeboden door" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " Alles downloaden" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " Bestand downloaden" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " Bestand bekijken" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Uploaden" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " Bestand vervangen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Documenten" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Gerelateerd
    Record
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Gevraagde documenten" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;Documenten." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Aanvraag" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Gevraagde Documenten" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Verzoek om documenten:
    \n" +" \n" +" Inbox Financieel\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hallo OdooBot,\n" +"

    \n" +" OdooBot(odoobot@example.com) vraagt je om het volgende document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financieel\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Voorbeeld van een notitie.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Geef ons het ontbrekende document vóór 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" UwBedrijf\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Aangedreven door Odoo Documenten\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Verzoek om documenten:
    \n" +" \n" +" Inbox Financieel\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hallo OdooBot,\n" +"

    \n" +" Dit is een vriendelijke herinnering om je gevraagde document te uploaden:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financieel\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Voorbeeld van een notitie.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Geef ons het ontbrekende document vóór 2021-05-17.\n" +"

    \n" +" Hartelijk dank,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" UwBedrijf\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Aangedreven door Odoo Documenten\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Een Python bibliotheek dat zal worden gebruikt om standaardwaarden te bieden" +" bij het maken van nieuwe records voor deze alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" +"Een bestemming is nodig als je meerdere snelkoppelingen tegelijk maakt." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "Een map kan niet in zichzelf worden opgenomen" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "Een snelkoppeling kan niet naar zichzelf wijzen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Toegang" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Toegangsfout" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Toegangstoken" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "Toegang tot al je documenten" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "Toegang tot documenten en relaties kan niet worden gewijzigd." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "Toegang tot een map of een document" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "Toegangstokens die al gebruikt zijn." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "Toegang url" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Actie" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Actie gevraagd" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Actief" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Activiteiten" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Activiteit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Activiteit uitzondering decoratie" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Activiteitenplan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Activiteitsfase" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Soort activiteit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Activiteitensoort icoon" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Activiteitensoorten" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"Activiteitenplannen worden gebruikt om een lijst met activiteiten toe te wijzen in slechts een paar klikken\n" +" (bijv. 'NDA-ondertekeningsproces', 'Workflow werkruimte', ...)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Soort activiteit" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Toevoegen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Bestand toevoegen" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "Map toevoegen" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "Tag Bill toevoegen" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "Label toevoegen Gevalideerd" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "URL Toevoegen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Nieuw bestand toevoegen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Mensen of e-mailadressen toevoegen..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "Mensen of e-mailadressen toevoegen:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "Snelkoppeling toevoegen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "Maak favoriet" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "Aanvullende documenten waartoe je toegang hebt." + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Beheerder" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Advertenties" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Alias contact beveiliging" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Aliasdomein" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Aliasdomeinnaam" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "E-mailalias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Aliasnaam" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Status alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "Alias-tags" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Status alias beoordeeld op het laatste ontvangen bericht." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Aliased model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Alle" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" +"Alle gebruikers met toegang tot deze %(documentType)s of zijn ouder hebben " +"bewerkingsrechten." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "Toegestane toegang" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "Reeds gekoppelde documenten: %s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Een gemakkelijke manier om inkomende e-mails te verwerken, is door een " +"scanner te configureren om PDF's te verzenden naar" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Een eenvoudige manier om inkomende e-mails te verwerken, is door je scanner " +"zo te configureren dat deze PDF's naar je werkruimte-e-mail verzendt. " +"Gescande bestanden verschijnen automatisch in je werkruimte. Verwerk " +"vervolgens je documenten in bulk met de splitstool: start door de gebruiker " +"gedefinieerde acties, vraag een handtekening aan, converteer naar " +"leveranciersfacturen met AI, etc." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Er is een fout opgetreden tijdens het uploaden." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "Iedereen op het internet met de link kan %(action)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Iedereen met de link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Archiveer originele bestand(en)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Weet je zeker dat je de gerichte pagina wilt verwijderen?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Weet je zeker dat je de geselecteerde pagina('s) wilt verwijderen?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Weet je zeker dat je deze pagina wilt verwijderen?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "Weet je zeker dat je dit document definitief wilt wissen?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "Weet je zeker dat je deze documenten definitief wilt wissen?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Omdat deze pdf meerdere documenten bevat, kunnen we deze splitsen en in bulk" +" verwerken." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Bijlage" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Aantal bijlagen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Omschrijving bijlage" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Naam bijlage" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Soort bijlage" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "Beschikbare geïntegreerde acties" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Leveranciersfactuur" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Blanco pagina" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Brochures" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" +"Door een folder te definiëren zullen de geüploade activiteiten een document " +"genereren" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Annuleren" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Onderliggende" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Kies een record om te linken" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Kies of configureer e-mailservers" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Klik op een kaart om het document te selecteren." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" +"Klik op een miniatuur om een voorbeeld van het document te zien." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Klik op het paginascheidingsteken: we willen deze twee pagina's niet " +"splitsen omdat ze tot hetzelfde document behoren." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Klik op het kruis om de preview te verlaten." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "Aangemaakte klant" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Afsluiten" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Sluit splitstools" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Kleur" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "Gemeenschappelijke wortels voor alle gebruikers van het bedrijf." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Configuratie instellingen" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Configuratie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Configureren" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Contact" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Contracten" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Controlepaneel knoppen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Link kopiëren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "Koppelingen kopiëren" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Activiteit maken" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "Snelkoppeling maken" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "Maak een activiteitenplan voor documenten aan" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Nieuwe activiteit aanmaken" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "Nieuw contact maken en bewerken \"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "Nieuw contact maken \"" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Aanmaakdatum" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Aangepast bouncebericht" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dagen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Standaardwaarden" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" +"Termijn na het definitieve verwijderen van het document in de prullenbak " +"(dagen)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Verwijderen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Verwijder gerichte of geselecteerde pagina's" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Definitief verwijderen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Verwijdertermijn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Verwijdertermijn" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Verwijdertermijn (dagen)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Vervallen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Details" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Negeren" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" +"Wil je afsluiten zonder de pagina's op te slaan of te verzamelen in één " +"document?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Document" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "Document / Relatie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "Document Toegang Intern" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "Link naar document" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Document aantal" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Documentnaam" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Documentplannen" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "Document omleiden" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Aanvraag document" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Documentverzoek {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "Document aanvraag: %(name)s Geüpload door: %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Documentverzoek: Herinnering" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "Document Token" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Voorbeeld document" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "Document geüpload door %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Document: Documentaanvraag" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Documenten" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Documenten link naar record" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Documenten aanmaken mixin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "Documenten in de Prullenbak kunnen niet worden gedeeld" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "Mixin documenten ontkoppelen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Gereed" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Gereed!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Downloaden" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "Download #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Download alle bestanden" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Bestand downloaden" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "Map downloaden als zip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "Download zip #{subfolder.name}" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Concept" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Drop hier je bestanden op te uploaden" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Vervaldatum in" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Vervalsoort" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Dupliceren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Bewerken" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Editor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "E-mailalias" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "E-mailaliassen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "E-mail uploaden" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "E-mail cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "E-maildomein bijv. 'example.com' in 'odoo@example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "E-mail koppelingen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Fout" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Voorbeeld verlaten/deselecteren/afsluiten" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Verlaat splitstools" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Afsluiten zonder opslaan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "Exp:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Declaratie" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Vervaldatum" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Exporteren" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "Extra opmerkingen..." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favoriet van" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Bestand" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Bestandsinhoud (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Bestandsinhoud (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Bestandsextensie" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Bestandsgrootte" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Helpermodel voor bestandsstreaming voor controllers" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Bestanden" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Bestandencentralisatie" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" +"Bestanden worden naar de prullenbak verstuurd en definitief verwijderd na" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" +"Bestanden worden naar de prullenbak verstuurd en definitief verwijderd na %s" +" dagen." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Financieel" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Fiscaal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Richten op eerste pagina van volgende groep" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Richten op eerste pagina van volgende groep" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Richten op volgende pagina" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Richten op vorige pagina" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Map" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "Mappen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Volgers" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Volgers (Relaties)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font awesome icoon bijv. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Verzamelen in één document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Algemeen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "Algemene toegang" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Groeperen op" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Heeft bericht" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "Snelkoppelingen verbergen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Geschiedenis" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Startpagina" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID van het bovenliggende record dat de alias bezit (bijvoorbeeld: het " +"project bezit de alias van de aangemaakte taken)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Icoon" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Icoon om uitzondering op activiteit aan te geven." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" +"Als \"Waar\", dan kunnen alleen mensen die direct toegang hebben tot dit " +"document het bekijken. Als \"False\", dan wordt toegang met de link ook " +"gegeven aan iedereen die toegang heeft tot de bovenliggende map." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Indien aangevinkt vragen nieuwe berichten je aandacht." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Indien aangevinkt hebben sommige berichten een leveringsfout." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Indien ingesteld, wordt deze inhoud automatisch naar niet-geautoriseerde " +"gebruikers verzonden in plaats van het standaardbericht." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Afbeeldingen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" +"Onmogelijk om mappen te verwijderen die door andere applicaties worden " +"gebruikt." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" +"Onmogelijk om Verstuur partnergrootboekens voor meerdere documenten tegelijk" +" uit te nodigen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"Het is onmogelijk om de volgende items te verplaatsen omdat dit een recursieve hiërarchie zou creëren:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "Ontoegankelijk" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Postvak in" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" +"Onjuiste waarden. Gebruik een van de volgende voor de volgende velden: " +"%(hints)s.)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Geïndexeerde inhoud" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Interne gebruikers" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "Rechten interne gebruikers" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "Interne gebruikers kunnen %(action)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "Ongeldige map-id" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "Ongeldige bewerking" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "Ongeldige rol." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Is bewerkbare bijlage" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Is favoriet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Is een volger" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "Wordt beschouwd als meerdere pagina's" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" +"Het is niet mogelijk om gearchiveerde documenten of documenten naar " +"gearchiveerde mappen te verplaatsen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"Item(s) die je wilt herstellen zijn opgenomen in gearchiveerde mappen. Om deze items te herstellen, moet je in plaats daarvan de volgende inclusief mappen herstellen:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "Items in de prullenbak worden definitief verwijderd na %s dagen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "Items in de prullenbak worden definitief verwijderd na %s dagen." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "Laatst bekeken op" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Juridische afdeling" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Laten we documenten in je inbox verwerken.
    Tip: gebruik labels om " +"documenten te filteren en je proces te structureren." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" +"Laten we deze leveranciersfacturen verwerken: stuur naar de werkruimte van " +"de boekhouding." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Laten we dit document, afkomstig van onze scanner, verwerken." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Laten we deze e-mail voorzien van een juridisch label
    Tips: acties " +"kunnen worden aangepast aan het proces, afhankelijk van de werkruimte." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Link" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "Verbinding Toegang Verborgen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "Link Toegangsrechten" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "Link URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Link gekopieerd naar klembord!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "Link gekopieerd naar het klembord." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "Koppelingen gekopieerd naar klembord!" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Lokale deelgebaseerde inkomende detectie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Vergrendelen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Geblokkeerd" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Geblokkeerd door" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Log een notitie..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Login" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Uitloggen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "Mail: %s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "Markeer activiteiten als voltooid" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "PDF's samenvoegen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Bericht" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Bericht afleverfout" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Berichten" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Mime Type" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "Verwijzing naar ontbrekende documenten." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modellen" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Maanden" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Verplaats deze pagina naar de prullenbak" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Verplaatsen naar de prullenbak" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Verplaatsen naar de prullenbak" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "Verplaatsen naar de prullenbak?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Verplaats naar de prullenbak" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "Je moet de link hebben om toegang te krijgen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Mijn activiteiten" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Mijn activiteit deadline" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Mijn documenten" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "Mijn Drive" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "NULL rollen moeten een ingestelde last_access_date hebben" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Naam" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "Naam / Extensie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Nieuw" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Nieuw bestand" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "Nieuwe map" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Nieuwe groep" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Volgende activiteitenafspraak" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Volgende activiteit deadline" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Volgende activiteit overzicht" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Volgende activiteit type" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Geen activiteitensoorten gevonden. Laten we er een maken!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "Geen alias geconfigureerd" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Er zijn geen documenten geselecteerd" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "Geen item geselekteerd" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "Niemand op het internet heeft toegang tot" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Geen gedeelte links" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Geen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Geen bestand" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "Geen map" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Niet gekoppeld" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Notitie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Informeer" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Aantal acties" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Aantal fouten" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Aantal berichten die actie vereisen" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Aantal berichten met leveringsfout" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo website" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Ouder" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "Alleen Documentenbeheerders kunnen mappen vastzetten." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "Alleen Documentenbeheerders kunnen aliassen instellen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "Alleen documentbeheerders kunnen een alias instellen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "Alleen OdooBot-eigen hoofdmappen kunnen worden vastgemaakt." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "Alleen mensen met toegang kunnen de link openen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "Open #{document_url.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "Open map #{subfolder.name}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "Open het paneel met machtigingen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" +"De bewerking is niet ondersteund. Gebruik in plaats daarvan \"Verplaats naar" +" prullenbak\" / `actie_archief`." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" +"De bewerking is niet ondersteund. Gebruik in plaats daarvan \"Herstel\" / " +"`actie_unarchive`." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Optionele ID van een thread (record) waaraan alle inkomende berichten worden" +" gekoppeld, zelfs als ze hierop niet geantwoord hebben. Indien ingesteld, " +"zal dit het aanmaken van nieuwe records uitzetten." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "Optioneel bericht..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Of verstuur e-mails naar" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Overige" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Eigenaar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Eigenaar: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "Eigenaar: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "Eigenaar: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Bovenliggende map" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Bovenliggend model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Bovenliggend pad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Bovenliggende record Thread ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Bovenliggend model dat de alias bevat. Het model dat de aliasverwijzing bevat,\n" +"is niet noodzakelijk het model dat door alias_model_id wordt gegeven (bijvoorbeeld: project (parent_model) en taak (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Gedeeltelijke overdracht" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Relatie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "Mensen met toegang" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Vastzetten" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "Vastgemaakt aan wortels van bedrijf" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" +"Log in of neem contact op met de persoon die deze link heeft gedeeld voor " +"meer informatie." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Beleid om een bericht te versturen bij een document door gebruik te maken van de mail gateway.\n" +"-iedereen: iedereen mag posten\n" +"-relaties: alleen geautoriseerde relaties\n" +"-volgers: alleen volgers van een bijbehorend document of leden van gevolgde kanalen\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Huidig" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Presentaties" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "Bestanden bekijken" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Project" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Beoordelingen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Recent" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "Onlangs geraadpleegde documenten." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Record" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Record Thread ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Resterende pagina's" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Herinneringsmails zijn verzonden." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Herinnering om je document te uploaden {{ object.name and ' : ' + " +"object.name or '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "Verwijder toegang" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Lid verwijderen" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "Tag inbox verwijderen" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "Label verwijderen om te valideren" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "Alle tags verwijderen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "Uit favorieten verwijderen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Naam wijzigen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Verzoek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Aanvraag activiteit" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Verzoek aan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Documentverzoek" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Bestand aanvragen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Aangevraagd\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Aangevraagd document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Aangevraagde documenten" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "Gevraagde Verstuur partnergrootboeken" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Res model naam" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Resource-ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Resource model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Resourcenaam" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Verantwoordelijke" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Verantwoordelijke gebruiker" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Terugzetten" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Beperkt" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Beperkte map" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "Wijzigingen terugdraaien" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Rol" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS fout bij versturen" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Verkoop" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Opslaan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "Wijzigingen eerst opslaan of negeren" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "Opslaan…" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Selecteer alle" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Selecteer gerichte pagina" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Selecteer volgende pagina" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Selecteer de volgende pagina's van de groep" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Selecteer vorige pagina" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Selecteer de vorige pagina's van de groep" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Selecteer/deselecteer alle pagina's" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Verzenden" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "Verzenden naar Financiën" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Stuur deze brief naar de juridische afdeling door de juiste labels toe te " +"wijzen." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Verzonden naar relatie bij het aanvragen van een document van hen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Reeks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "Acties instellen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Bepaal verwijdertermijn voor documenten in de prullenbak" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "Vervaldatum instellen" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Stel herinnering in op activiteiten om gebruikers die het gevraagde document" +" niet hebben geüpload op de hoogte te stellen" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Instellingen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Delen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "Delen: %(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "Gedeeld met mij" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "Delen bezig..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Sneltoets" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "Snelkoppeling gemaakt" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "Snelkoppeling gemaakt in Mijn Drive" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "Snelkoppelingen kunnen maar één tegelijk worden gemaakt." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "Snelkoppelingen kunnen het doeldocument niet wijzigen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "Snelkoppelingen kunnen geen documenten bevatten." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Omvang:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Sommige bestanden konden niet worden geüpload (maximale grootte: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Brondocument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "Speciale mappen kunnen niet worden gedeeld" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Splitsen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "PDF splitsen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "Splits alle lege pagina's" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Splits de geselecteerde pagina's" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Met ster" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status gebaseerd op activiteiten\n" +"Te laat: Datum is al gepasseerd\n" +"Vandaag: Activiteit datum is vandaag\n" +"Gepland: Toekomstige activiteiten." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Hier blijven" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Structuur" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Samenvatting" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Label" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Labelnaam" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "Tagnaam al gebruikt" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Labels" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Tekst" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" +"Tekst die wordt weergegeven wanneer de muisaanwijzer op deze tag wordt " +"geplaatst" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "De verwijdertermijn moet positief zijn." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "De URL van het document is gekopieerd naar je klembord." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "Het document is verplaatst." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"De volgende documenten kunnen geen alias hebben:\n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"De volgende documenten/mappen kunnen geen eigendom zijn van een portaalgebruiker:\n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "De volgende documenten/sneltoetsen hebben een typefout:\n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" +"De volgende snelkoppelingen kunnen niet worden ingesteld als document-" +"ouder:\n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Het model waar deze alias bijhoort. Iedere inkomende e-mail dat niet bij een" +" bestaande regel hoort zal leiden tot het aanmaken van een nieuwe regel in " +"dit model (Bijv. een projecttaak)." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"De naam van de e-mailalias, bijvoorbeeld: 'vacature' als je alle e-mails van" +" vacature@jouwbedrijf.nl wilt afvangen" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Deze maand" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Deze week" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "Deze actie bestaat niet." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Deze bijlage is al een document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "Dit document bestaat niet of is niet openbaar beschikbaar." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Dit document is aangevraagd.\n" +"Upload het." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "Dit document is hersteld." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" +"Dit bestand is naar de prullenbak verstuurd en wordt definitief verwijderd " +"op %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "Deze map bestaat niet." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "Dit is een snelkoppeling" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "Deze relatie is al ingesteld op dit document." + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Die vertegenwoordigen de verschillende categorieën van dingen die je moet " +"doen (bijvoorbeeld \"Bellen\" of \"E-mail verzenden\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatuur" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Miniatuurstatus" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Tip: configureer je scanner om alle documenten naar dit adres te sturen." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Tip: word een papierloos bedrijf" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Te bevestigen" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Te bevestigen" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Vandaag" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Favoriet wisselen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Tooltip" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Prullenbak" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "Prullenbakbeheer" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Dat is waar als we de linkbijlage kunnen bewerken." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Soort" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Type van de geregistreerde uitzonderingsactiviteit." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"De URL %s lijkt niet volledig, aangezien deze niet begint met http(s):// of " +"ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "URL voorbeeld afbeelding" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "Niet-beschikbare actie." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Ontgrendel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Naamloos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Losmaken" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Upload" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Upload een bestand of sleep het hier." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Bestandsverzoek uploaden" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Gebruiker" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "Toegangsrol gebruiker" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Gebruiker machtiging" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "BTW" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Bevestigd" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Video's" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Viewer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Wil je een papierloos bedrijf worden? Laten we Odoo-documenten " +"ontdekken." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Websiteberichten" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Website communicatie geschiedenis" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Weken" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "Wat wil je doen met de resterende pagina's?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"Wow... 6 documenten verwerkt in een paar seconden.
    De rondleiding is " +"voltooid. Probeer nu je eigen documenten te uploaden." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Jij" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "Je mag geen documenten (uit)archiveren." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "Je mag geen mappen (ont)pinnen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" +"Je mag de eigendomsrechten van documenten die je niet bezit niet veranderen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "Je mag niet al deze items verwijderen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "Het is niet toegestaan ​​om ingesloten acties uit te voeren." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "Je mag deze handeling niet uitvoeren." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" +"Het is niet toegestaan ​​om ingesloten acties vast te pinnen of los te " +"pinnen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "Je mag niet in deze map schrijven." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Je kunt een bestand van je computer uploaden of een internetlink naar je " +"bestand kopiëren/plakken." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "Je kunt geen acties voor die map vastzetten." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "Je kunt geen actie pingen op dat document." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "Je kunt dat soort acties niet pingen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" +"Je kunt de toegang van een snelkoppeling niet bijwerken, maar wel het doel." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "Je hebt geen toegang tot die map_id." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" +"Je kunt geen snelkoppelingen maken in of documenten verplaatsen naar deze " +"speciale map." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "Je hebt geen toegang tot de mappen in de prullenbak." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" +"Je kunt de eigenaar van documenten waarvan je niet de eigenaar bent, niet " +"wijzigen." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "Je kunt geen tags verwijderen die gebruikt worden in serveracties." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "Je kunt documenten niet dupliceren in de Prullenbak." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" +"Je kunt geen mappen of bestanden verplaatsen die zich in de prullenbak " +"bevinden." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "Je kunt deze relatie niet verwijderen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "Je kunt niet meerdere documenten tegelijk delen" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" +"Je hebt niet voldoende toegangsrechten om deze documenten te verwijderen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "Je hebt geen rechten om documenten naar die map te verplaatsen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" +"Je moet in een specifieke aanpasbare werkruimte zijn om bestanden te " +"uploaden" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "Jouw rol: %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "Jouw individuele ruimte." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "alias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "bytes" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "dagen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "documenten" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "Bijv. Bespreken van de offerte" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "Bijv. Financiën" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "bijv. Ontbrekende declaratie" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "bijv. Te bevestigen" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "Bijv. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "bijv. mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "bestanden" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "map" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "mappen," + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "objecten geselecteerd" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "selecteer" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "een document met je gedeeld.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "een map met je gedeeld.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "gedeeld door" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "dit document met je gedeeld:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "deze map met je gedeeld:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "statuscode: %(status)s, bericht: %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "naamloos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"-\n" +" URL" diff --git a/addons_extensions/documents/i18n/pl.po b/addons_extensions/documents/i18n/pl.po new file mode 100644 index 000000000..f2be28687 --- /dev/null +++ b/addons_extensions/documents/i18n/pl.po @@ -0,0 +1,3725 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Marta Wacławek, 2024 +# Tiffany Chang, 2024 +# Tadeusz Karpiński , 2024 +# Wil Odoo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Wil Odoo, 2024\n" +"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (kopiuj)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s Pliki" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" +"%sPlik/Pliki nie został przeniesiony ponieważ jest zablokowany przez innego " +"użytkownika" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Zeskanowane pliki pojawią się automatycznie w obszarze roboczym. Następnie" +" można masowo przetwarzać dokumenty za pomocą narzędzia do dzielenia: " +"uruchamiać akcje zdefiniowane przez użytkownika, żądać podpisu, konwertować " +"na rachunki dostawców za pomocą sztucznej inteligencji itp." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr "
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Wskazówka: Stań się firmą bez papieru" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Odznacz tę stronę, ponieważ planujemy najpierw przetworzyć wszystkie " +"rachunki." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Zasilane przez" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr "Prześlij" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Dokumenty" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Powiązane
    Rekordy
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Żądany dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "Dokumenty." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "Żądanie" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Żądany dokument" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Słownik (dictionary) python, który będzie wyliczony i zastosowany jako " +"wartości domyślne do tworzenia nowego rekordu w tym aliasie." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Dostęp" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Błąd dostępu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Token dostępu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Akcja" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Wymagane działanie" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Aktywne" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Czynności" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Czynność" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Dekoracja wyjątku aktywności" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Plany działania" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Stan aktywności" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Typ aktywności" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ikona typu aktywności" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Typy czynności" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Typ czynności" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Dodaj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Dodaj plik" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Dodaj link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Dodaj nowy plik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Dodaj osoby lub adresy email..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrator" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Ogłoszenia" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Zabezpieczenie aliasu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Domena aliasu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Alias Domain Name" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Alias Email" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Nazwa aliasu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Status aliasu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Status aliasu oceniony na podstawie ostatniej otrzymanej wiadomości." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Aliasowany model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Wszystko" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Łatwym sposobem na przetwarzanie przychodzących wiadomości jest " +"skonfigurowanie skanera do wysyłania plików PDF na adres" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Łatwym sposobem na przetwarzanie przychodzących wiadomości e-mail jest " +"skonfigurowanie skanera do wysyłania plików PDF na adres e-mail obszaru " +"roboczego. Zeskanowane pliki pojawią się automatycznie w obszarze roboczym. " +"Następnie można masowo przetwarzać dokumenty za pomocą narzędzia do " +"dzielenia: uruchamiać akcje zdefiniowane przez użytkownika, żądać podpisu, " +"konwertować na rachunki od dostawców za pomocą sztucznej inteligencji itp." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Podczas przesyłania wystąpił błąd." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Każdy z linkiem" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Archiwizowanie oryginalnych plików" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Ponieważ ten plik PDF zawiera wiele dokumentów, podzielmy go i przetworzmy " +"zbiorczo." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Załącznik" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Liczba załączników" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Opis Załącznika" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Nazwa załącznika" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Typ załącznika" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Faktura zakupowa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Pusta strona" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Ulotki" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" +"Po zdefiniowaniu folderu działania związane z przesyłaniem wygenerują " +"dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Anuluj" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Suma kontrolna / SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Podrzędne" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Wybierz rekord do połączenia" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Kliknij kartę, aby wybrać dokument." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Kliknij miniaturę, aby wyświetlić podgląd dokumentu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Kliknij separator stron: nie chcemy rozdzielać tych dwóch stron, " +"ponieważ należą one do tego samego dokumentu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Zamknij" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Kolor" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Firma" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Ustawienia konfiguracji" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfiguracja" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Konfiguruj" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Umowy" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Przyciski panelu sterowania" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Skopiuj Link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Utwórz aktywność" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Utwórz nową aktywność" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Utworzył(a)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Data utworzenia" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Data utworzenia" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Niestandardowa wiadomość o odbiorze" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Wartości domyślne" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Usuń" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Zdezaktualizowane" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Szczegóły" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Odrzuć" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Liczba dokumentów" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Nazwa dokumentu" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Żądanie dokumentu" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Wniosek o dokument {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Wniosek o dokument: Przypomnienie" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Podgląd dokumentu" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Dokument: Wniosek o dokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumenty" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Dokumenty Link do rekordu" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Mixin tworzenia dokumentów" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Wykonano" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Gotowe!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Pobierz" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Pobierz wszystkie pliki" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Wersja robocza" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Upuść pliki tutaj aby je przesłać" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Termin za" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Rodzaj terminu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Duplikuj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Edytuj" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Edytor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Alias adresu e-mail" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Aliasy email" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Email DW" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Domena e-mail, np. „example.com” w „odoo@example.com”." + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Błąd" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Wydatek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Wygaśnięcie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Eksport" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Ulubione z" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Plik" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Zawartość pliku (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Zawartość pliku (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Rozszerzenie pliku" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Rozmiar pliku" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Model przesyłania strumieniowego plików dla kontrolerów" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Pliki" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Centralizacja plików" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Finansowy" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Fiskalny" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Folder" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Obserwatorzy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Obserwatorzy (partnerzy)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Ikona Font awesome np. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Ogólne" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Grupuj wg" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Ma wiadomość" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Historia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Dom" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID rekordu nadrzędnego zawierającego alias (np. projekt zawierający alias " +"tworzenia zadań)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ikona" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ikona wskazująca na wyjątek aktywności." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Jeśli zaznaczone, nowe wiadomości wymagają twojej uwagi." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" +"Jeśli zaznaczone, niektóre wiadomości napotkały błędy podczas doręczenia." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Jeżeli ustawione, ta treść będzie wysyłana automatycznie do " +"nieautoryzowanych użytkowników zamiast wiadomości domyślnej." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Obrazy" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Skrzynka odbiorcza" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indeksowana zawartość" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Wewnętrzni użytkownicy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Czy załącznik można edytować?" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Jest Polubiony" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Jest obserwatorem" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "Jest uważany za wielostronicowy" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Ostatnio aktualizowane przez" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Data ostatniej aktualizacji" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Prawne" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Przetwórzmy dokumenty w skrzynce odbiorczej.
    Wskazówka: Użyj tagów " +"do filtrowania dokumentów i strukturyzowania procesu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Przetwórzmy te rachunki: wyślij do obszaru roboczego Finanse." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Przetwórzmy ten dokument pochodzący z naszego skanera." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Oznaczmy tę wiadomość jako legal
    Porada: działania mogą być " +"dostosowane do procesu, zgodnie z obszarem roboczym." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Odnośnik" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "URL linku" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Link skopiowany do schowka!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Wykrywanie przychodzących połączeń w oparciu o części lokalne" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Zablokuj" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Zablokowane" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Zablokowane przez" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Notatka" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Login" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Wyloguj" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Wiadomość" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Błąd doręczenia wiadomości" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Wiadomości" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Typ mime" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Models" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Miesiące" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Przenieś do kosza" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Moje czynności" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Ostateczny terminin moich aktywności" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Moje dokumenty" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nazwa" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Nowe" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Nowy plik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Nowa grupa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Następna Czynność wydarzenia w kalendarzu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Termin kolejnej czynności" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Podsumowanie kolejnej czynności" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Typ następnej czynności" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Nie znaleziono typów aktywności. Stwórzmy jeden!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Nie wybrano żadnego dokumentu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Brak udostępnionych linków" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Brak" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Nie jest plikiem" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Nie dołączono" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Notatka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Powiadom" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Liczba akcji" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Liczba błędów" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Liczba wiadomości wymagających akcji" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Liczba wiadomości z błędami przy doręczeniu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Logo Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Strona internetowa Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Starsze" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Opcjonalne ID wątku (rekordu), do którego przychodzące wiadomości będą " +"dowiązane, nawet jeśli nie są odpowiedzią na ten rekord. Jeśli ustawione, to" +" będzie zapobiegać tworzeniu nowych rekordów." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Lub wyślij wiadomość e-mail na adres" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Inne" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Właściciel" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Właściciel: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Folder nadrzędny" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Model nadrzędny" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Ścieżka rodzica" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID wątku rekordu nadrzędnego" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Model nadrzędny zawierający alias. Model zawierający odwołanie do aliasu\n" +"nie musi być modelem z alias_model_id\n" +"(np. projekt (parent_model) i zadanie (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Częściowy transfer" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Kontrahent" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Przypnij" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Zasady publikowania wiadomości na dokumencie za pomocą poczty elektronicznej.\n" +"- wszyscy: każdy może publikować\n" +"- partnerzy: tylko uwierzytelnieni partnerzy\n" +"- obserwatorzy: tylko następcy powiązanego dokumentu lub członkowie następujących kanałów\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Obecny(a)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Prezentacje" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Projekt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Oceny" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Najnowsze" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Rekord" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID wątku rekordu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Pozostałe strony" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Zostały wysłane wiadomości e-mail z przypomnieniem." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Przypomnienie o przesłaniu dokumentu{{ object.name and ' : ' + object.name " +"or '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Usuń Członka" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Zmień nazwę" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Zgłoszenie" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Żądanie aktywności" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Prośba do" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Wniosek o dokument" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Zażądaj pliku" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Żądany dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Wymagane dokumenty" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Nazwa modelu Res" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID zasobu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Model zasobu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Nazwa zasobu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Odpowiedzialny" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Użytkownik odpowiedzialny" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Przywróć" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Ograniczone" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Rola" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Błąd dostarczenia wiadomości SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Sprzedaż" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Zapisz" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Wybierz wszystkie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Wyślij" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "Wyślij ten list do działu prawnego, przypisując mu odpowiednie tagi." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Wysyłane do partnera w przypadku żądania od niego dokumentu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Sekwencja" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Ustaw przypomnienia w aktywnościach, aby powiadamiać użytkowników, którzy " +"nie przesłali żądanego dokumentu." + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Ustawienia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Udostępnij" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Skrót" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Rozmiar:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Nie można było przesłać niektórych plików (maksymalny rozmiar: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Dokument źródłowy" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Podziel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Podziel PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Oznaczone gwiazdką" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status na podstawie czynności\n" +"Zaległe: Termin już minął\n" +"Dzisiaj: Data czynności przypada na dzisiaj\n" +"Zaplanowane: Przyszłe czynności." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Zostań tutaj" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Struktura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Podsumowanie" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Tag" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Nazwa tagu" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Tagi" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Tekst" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Model (rodzaj dokumentu Odoo), któremu odpowiada ten alias. Każda " +"przychodząca wiadomość e-mail, która nie odpowiada istniejącemu rekordowi, " +"spowoduje utworzenie nowego rekordu tego modelu (np. Zadanie projektu)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Nazwa aliasu e-mail, np. \"jobs\", jeśli chcesz przechwytywać wiadomości " +"e-mail dla " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Bieżący miesiąc" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Ten tydzień" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Ten załącznik jest już dołączony do tego dokumentu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Ten dokument został zamówiony.\n" +"Prześlij go." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Reprezentują one różne kategorie rzeczy, które musisz zrobić (np. " +"\"Zadzwoń\" lub \"Wyślij e-mail\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniaturka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Status miniatury" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Wskazówka: skonfiguruj skaner tak, aby wysyłał wszystkie dokumenty na ten " +"adres." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Wskazówka: Stań się firmą bez papieru" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Do zatwierdzenia" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Do zatwierdzenia" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Na dzisiaj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Przełącznik ulubionych" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Tooltip" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Kosz" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Prawda, jeśli możemy edytować załącznik linku." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Typ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Typ wyjątku działania na rekordzie." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Odblokuj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Bez nazwy" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Odepnij" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Prześlij" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Prześlij plik lub przeciągnij go tutaj." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Żądanie przesłania pliku" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Użytkownik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Uprawnienia użytkownika" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "NIP" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Zatwierdzone" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Wideo" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Widz" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "Chcesz stać się firmą bez papieru? Odkryjmy Odoo Documents." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Wiadomości" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Historia komunikacji" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Tygodnie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Ty" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Możesz wybrać plik z dysku albo skopiować/wkleić link z adresem do twojego " +"pliku." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "alias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "dni." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "dokumenty" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "np. Propozycja dyskusji" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "np. Finanse " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "np. Brakujące wydatki" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "np. do zatwierdzenia" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "np. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "np. mojafirma.pl" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "folder" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "wybierz" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "udostępniony przez" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "nienazwany" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/pt.po b/addons_extensions/documents/i18n/pt.po new file mode 100644 index 000000000..a9017f911 --- /dev/null +++ b/addons_extensions/documents/i18n/pt.po @@ -0,0 +1,2887 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Marcelo Pereira , 2022 +# Joao Felix , 2022 +# Ricardo Martins , 2022 +# Reinaldo Ramos , 2022 +# Luiz Fernando , 2022 +# Martin Trigaux, 2022 +# Pedro Filipe , 2022 +# Diogo Fonseca , 2022 +# Pedro Castro Silva , 2022 +# Nuno Silva , 2022 +# Manuela Silva , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2022-09-22 05:46+0000\n" +"Last-Translator: Manuela Silva , 2023\n" +"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr ",expira em" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "Bites" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "Gb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "Kb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "Mb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Desenvolvido por" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr " Transferir Todos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr "Transferir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "Um dicionário de Python que será avaliado para fornecer valores predefinidos quando criar novos registos para este alias." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "Um conjunto de condições e ações que estarão disponíveis para todos os anexos que correspondem às condições." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Acesso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Erro de Acesso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Grupos de Acesso" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "Permissões de acesso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Código de Acesso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Ação" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "Nome da Ação" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Ação Necessária" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Ações" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "Ativo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "Atividades" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "Atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Marcador de Exceções de Atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "Nota de Atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Estado da Atividade" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tipo de Atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ícone de Tipo de Atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "Tipo de Atividade" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Adicionar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Adicionar URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrador" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "Segurança de Contacto do Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Nome do Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "Domínio do alias" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "Modelo Aliased" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "Todos os ficheiros enviados" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "Permite" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "Permite-lhe gerir os seus documentos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Ocorreu um erro durante o envio." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "Arquivar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "Arquivados" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "Ativos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Anexado a" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Anexo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "Número de Anexos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Nome do Anexo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "Regras Disponíveis " + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "Fatura de Fornecedor" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "Pode Enviar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "Cancelar" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Categoria" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Fechar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Empresa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "Tipo de Condição" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Condições" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Configuração" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Contacto" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "Contém" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "Contratos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Criar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "Criar uma nova atividade " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Criado por" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Data de Criação" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "Critérios" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Mensagem Personalizada de Email Rejeitado" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Valores Predefinidos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "Valores predefinidos para os documentos enviados" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Eliminar" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "Obsoleto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Descrição" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Descartar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "Documento" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Nome do Documento" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "Dono do documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Pedido de Documento " + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "Documento solicitado: %s Enviado por: %s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "Lista de Documentos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Documentos" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "Não Contem" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Domínio" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Transferir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "Transferir todos os ficheiros" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "Transferir e Enviar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Largue aqui os ficheiros para enviar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "Vencimento em" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipo de Vencimento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Editar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "Alias de Email" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "E-mail cc" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Erro" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Despesa" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "Expirado" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favorito de" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Ficheiro" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Tamanho do ficheiro" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "Pasta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Seguidores" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidores (Parceiros)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "ícone do Font awesome ex. fa-tasks" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Atividades Futuras" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "Há Mensagem" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Histórico" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "ID do registo parent que armazena o alias (Ex.: projeto que armazena o alias de criação de tarefas)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ícone" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "ícone para indicar uma exceção na atividade." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Se selecionado, há novas mensagens que requerem a sua atenção." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Se estiver marcado, algumas mensagens têm um erro de entrega." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Caixa de Entrada" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Conteúdo indexado" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "Interno" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "É Seguidor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "Conhecimento" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Atividades em Atraso" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Hiperligação" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "Ativo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Bloquear" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "Bloqueada" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "Registe uma nota..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Início de Sessão" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Terminar sessão" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "Marketing" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "Erro de Envio de Mensagem" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Mensagens" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Tipo Mime" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "Diversos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Modelo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modelos" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Meses" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "Valores Multiplos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Prazo das Minhas Atividades" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Meus documentos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "Os Meus Favoritos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nome" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "Novo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Nova Atividade de Calendário" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Prazo da Próxima Atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Resumo da Próxima Atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Tipo da Atividade Seguinte " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Nota" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Número de Ações" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "Número de erros" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Número de mensagens que requerem uma ação" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Número de mensagens com um erro de entrega" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo Website" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "ID opcional de uma linha (registo) à qual todas as mensagens de entrada serão anexadas, mesmo que não tenham tido resposta. Se definido, irá desativar completamente a criação de novos registos." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Outro" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Dono" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Modelo Parent" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "Caminho ascendente " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID da Linha de Registo do Parent" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "Modelo parent que armazena o alias. O modelo que armazena a referência ao alias não é necessariamente o modelo determinado por alias_model_id (Ex.: project (parent_model) e task (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Política de publicação de mensagens no documento usando o mailgateway.\n" +"- todos: todos podem publicar\n" +"- parceiros: apenas parceiros autenticados\n" +"- seguidores: apenas seguidores do documento relacionado ou membros de canais seguidores\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "Apresentações" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "Projeto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "Acesso de Leitura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Registo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID da Linha de Registo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Remover" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "Substituir" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "Substituir por" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Requisição" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Requisitar um Documento" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Requisitar um ficheiro" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID do recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Modelo do recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Nome do Recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Responsável" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Utilizador Responsável" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Restaurar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Erro de Envio de SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "Vendas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Guardar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "Agendar Atividade" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Sequência" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "Definir Contacto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Definições" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "Partilhar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "Tipo de Partilha" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "Partilhado" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "Etiquetas Partilhadas" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Mostrar todos os registos cuja data de ação é anterior à atual" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Tamanho" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "Dividir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Estado" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Estados baseados nas atividades\n" +"Vencida: Ultrapassada a data planeada\n" +"Hoje: Data da atividade é a de hoje\n" +"Planeada: Atividades futuras." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Sumário" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Etiqueta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Nome de Etiqueta" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Etiquetas" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "Modelos" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "Texto" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "O modelo (Odoo Document Kind) a qual esta alias corresponde. Qualquer email de entrada que não responda a um registo existente criará um novo registo deste modelo (Ex.: uma Tarefa de Projeto)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "O nome do alias de email, ex.: 'jobs' se quiser receber emails de " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "O dono dos registos criados depois da receção de emails neste alias. Se este campo não estiver ativo, o sistema vai tentar encontrar o dono correto com base no endereço do remetente (De), ou então usa a conta de Administrador se não for encontrado nenhum utilizador do sistema nesse endereço." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Por Validar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Atividades do Dia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tipo" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Desbloquear" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Sem nome" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "Enviar" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "Envie um ficheiro ou arraste-o aqui." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "Enviar Documento" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "Enviar por Correio Eletrónico" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "Enviar por correio eletrónico" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Enviar ficheiro solicitado" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Utilizador" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "NIF" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "Válida Até" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "Validar" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "Validado" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Mensagens do Website" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "Histórico de comunicação do Website" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Semanas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "Espaço de trabalho" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "Acesso de Escrita" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "Pode enviar um ficheiro a partir do seu computador ou copiar/colar uma hiperligação da Internet para o seu ficheiro." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "eliminar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "documento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "Documento selecionado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "transferir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "por exemplo, Proposta de discussão" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "nome" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "Partilhado por" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "url" diff --git a/addons_extensions/documents/i18n/pt_BR.po b/addons_extensions/documents/i18n/pt_BR.po new file mode 100644 index 000000000..dda95a904 --- /dev/null +++ b/addons_extensions/documents/i18n/pt_BR.po @@ -0,0 +1,3981 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Silmar , 2024 +# Wil Odoo, 2024 +# Maitê Dietze, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Maitê Dietze, 2024\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s bloqueado)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "Talvez você queira usar a ação do pino." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (cópia)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (páginas restantes)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s arquivos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s pastas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s documentos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s arquivos não movidos porque foram travados por outro usuário" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s novos documentos criados" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s páginas excluídas" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s compartilhado com você" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Os arquivos digitalizados aparecerão automaticamente em seu espaço de " +"trabalho. Em seguida, processe seus documentos em massa com a ferramenta de " +"divisão: inicie ações definidas pelo usuário, solicite uma assinatura, " +"converta em contas de fornecedores com IA etc." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1 arquivo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1 pasta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1 documento" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Dica: torne-se uma empresa informatizada" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Desmarque esta página já que planejamos processar todas as contas " +"primeiro." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Selecione esta página para continuar." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Desenvolvido por" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " Baixar tudo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " Baixar arquivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " Visualizar arquivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Carregar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " Substituir arquivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Documentos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Registro
    relacionado
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Documento solicitado" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "e Documentos." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Solicitar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Documento solicitado" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Solicitação de documento:
    \n" +" \n" +" Caixa de entrada financeira\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Olá OdooBot,\n" +"

    \n" +" OdooBot (odoobot@exemplo.com) pede que você forneça o seguinte documento:\n" +"

    \n" +" \n" +"
    \n" +" \n" +" Caixa de entrada financeira\n" +" \n" +"
    \n" +"
    \n" +" \n" +"Exemplo de uma nota interna.\n" +"
    \n" +"
    \n" +" \n" +" Faça o upload do documento solicitado

    \n" +" \n" +" \n" +" \n" +" \n" +" Solicitamos que forneça o documento necessário antes de 17-05-2021.\n" +" \n" +"
    \n" +" --
    Michel Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" Sua Empresa\n" +"
    \n" +" +55 11 2020-2020\n" +" \n" +" | info@suaempresa.com\n" +" \n" +" \n" +" | http://www.exemplo.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +"- Esse link expira em 17-05-2021 .
    \n" +"
    \n" +" Distribuído por Odoo Documentos\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Solicitação de documentos:
    \n" +" \n" +" Caixa de entrada de Finanças\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Olá OdooBot,\n" +"

    \n" +" Este é um lembrete amigável para fazer o upload do documento solicitado:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Caixa de entrada de Finanças\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Exemplo de uma nota.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Forneça-nos o documento que falta antes de 17-05-2021.\n" +"

    \n" +" Obrigado,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.exemplo.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Desenvolvido por Odoo Documentos\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Um dicionário python que será avaliado para fornecer valores padrões ao " +"criar novos registros para este alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "É necessário um destino ao criar vários atalhos de uma vez." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "Uma pasta não pode ser incluída em si mesma" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "Um atalho não pode apontar para si mesmo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Acesso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Erro de acesso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Token de acesso" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "Acessar todos os seus documentos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "Os parceiros e os documentos do acesso não podem ser alterados." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "Acesso a uma pasta ou a um documento" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "Tokens de acesso já utilizados." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "URL de acesso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Ação" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Requer ação" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Ativo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Atividades" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Decoração de atividade excepcional" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Plano de atividades" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Status da atividade" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tipo de atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ícone do tipo de atividade" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Tipos de atividades" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"Os planos de atividades são usados para atribuir uma lista de atividades com" +" apenas alguns cliques (ex.: \"processo de assinatura de NDA\", \"fluxo de " +"trabalho do espaço de trabalho\", etc.)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Tipo de atividade" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Adicionar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Adicionar um arquivo" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "Adicionar pasta" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "Adicionar conta do marcador" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "Adicionar marcador validado" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Adicionar URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Adicionar um novo arquivo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Adicionar pessoas ou endereços de e-mail…" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "Adicione pessoas ou endereços de e-mail:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "Adicionar atalho" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "Adicionar estrela" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "Documentos adicionais aos quais você tem acesso." + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrador" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Propaganda" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Segurança de contato do alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Domínio do alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Nome de domínio do alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "E-mail do alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Nome do alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Status do alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "Marcadores do alias" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Status do alias avaliado na última mensagem recebida." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Modelo de alias" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Tudo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" +"Todos os usuários com acesso a esse %(documentType)s ou seu superior terão " +"permissões de edição." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "Acesso permitido" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "Documentos já vinculados: %s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Uma maneira fácil de processar os e-mails recebidos é configurar o scanner " +"para enviar PDFs para" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Uma maneira fácil de processar os e-mails recebidos é configurar o scanner " +"para enviar PDFs para o e-mail do espaço de trabalho. Os arquivos " +"digitalizados aparecerão automaticamente em seu espaço de trabalho. Em " +"seguida, processe seus documentos em massa com a ferramenta de divisão: " +"inicie ações definidas pelo usuário, solicite uma assinatura, converta em " +"contas de fornecedores com IA etc." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Houve um erro ao fazer o upload." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "Quem tiver o link pode %(action)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Quem tiver o link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Arquivar arquivos originais" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Tem certeza de que deseja excluir a página em foco?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Tem certeza de que deseja excluir as páginas selecionadas?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Tem certeza de que deseja excluir esta página?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "Tem certeza de que quer excluir o documento permanentemente?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "Tem certeza de que quer excluir os documentos permanentemente?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Como esse PDF contém múltiplos documentos, vamos dividi-los e processá-los " +"em massa." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Anexo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Total de anexos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Descrição do anexo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Nome do anexo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Tipo de anexo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "Ações incorporadas disponíveis" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Conta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Página em branco" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Folhetos" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "Ao definir uma pasta, as atividades de upload gerarão um documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Secundários" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Escolha um registro para vincular" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Escolha ou configure servidores de e-mail" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Clique em um cartão para selecionar o documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Clique em uma miniatura para pré-visualizar o documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Clique no separador de páginas: não queremos dividir essas duas " +"páginas já que elas pertencem ao mesmo documento." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Clique no X para sair da visualização" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "Cliente gerado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Fechar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Fechar ferramentas de divisão" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Cor" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "Raízes comuns para todos os usuários da empresa." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Empresa" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Configurações" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Configuração" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Configurar" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Contato" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Contratos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Botões do painel de controle" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Copiar link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "Copiar links" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Criar atividade" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "Criar atalho" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "Criar um plano de atividades de documentos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Criar uma nova atividade" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "Criar e editar um novo contato \"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "Criar novo contato \"" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Criado por" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Data de criação" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Mensagem de devolução personalizada" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Valores padrões" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "Atraso após a exclusão permanente do documento na lixeira (dias)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Excluir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Excluir páginas em foco ou selecionadas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Excluir permanentemente" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Atraso de exclusão" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Atraso de exclusão" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Atraso de exclusão (dias)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Depreciado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Detalhes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Cancelar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "Quer sair sem salvar ou reunir as páginas em um único documento?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "Documento/Parceiro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "Acesso interno a documentos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "Link de acesso ao documento" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Total de documentos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Nome do documento" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Planos de documento" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "Redirecionamento de documentos" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Solicitação de documento" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Solicitação de documento {{ object.name != False and ': '+ object.name or ''" +" }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "Solicitação de documento: %(name)s Carregado por: %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Solicitação de documento: lembrete" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "Token de documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Pré-visualizar documento" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "Documento carregado por %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Documento: solicitação de documento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Documentos" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Documentos vinculados ao registro" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Mixin de criação de documentos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "Os documentos na Lixeira não podem ser compartilhados" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "Mixin de desvinculação de documentos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Concluído" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Concluído!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Baixar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "Baixar #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Baixar todos os arquivos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Baixar arquivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "Baixar pasta como zip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "Baixar o zip #{subpasta.nome}" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Rescunho" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Solte os arquivos aqui para enviar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Vencimento em" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tipo de vencimento" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Duplicar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Editar" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Editor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Alias de e-mail" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Aliases de e-mail" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "Carregamento do e-mail" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "E-mail cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Domínio de e-mail, por exemplo, 'exemplo.com' em 'odoo@exemplo.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "Links do e-mail" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Erro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Esc Pré-visualização/Desmarcar/Sair" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Sair das ferramentas de divisão" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Sair sem salvar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "Prev:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Despesa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Expiração" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Exportar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "Comentários extra…" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favorito de" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Arquivo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Conteúdo do arquivo (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Conteúdo do arquivo (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Extensão de arquivo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Tamanho do arquivo" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Modelo auxiliar de streaming de arquivo para controladores" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Arquivos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Centralização de arquivos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "Os arquivos serão enviados para a lixeira e excluídos para sempre" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" +"Os arquivos serão enviados para a lixeira e excluídos para sempre após %s " +"dias." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Financeiro" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Fiscal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Foco na primeira página do próximo grupo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Foco na primeira página do grupo anterior" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Foco na próxima página" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Foco na página anterior" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Pasta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "Pastas" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Seguidores" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidores (parceiros)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Ícone do Font Awesome. Ex.: fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Reunir em um único documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Geral" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "Acesso geral" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "RH" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Tem uma mensagem" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "Ocultar atalhos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Histórico" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Início" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID do registro primário que detém o alias (exemplo: projeto detém o alias da" +" criação de tarefa)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ícone" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ícone para indicar uma atividade excepcional." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" +"Se for \"True\", somente as pessoas com acesso direto a esse documento " +"poderão visualizá-lo. Se for \"False\", o acesso com o link também será " +"concedido a todos que podem acessar a pasta principal." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Se marcado, há novas mensagens precisando de sua atenção." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Se marcado, há mensagens com erros de entrega." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Se definido, esse conteúdo será enviado automaticamente para usuários não " +"autorizados em vez da mensagem padrão." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Imagens" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "Não é possível excluir pastas usadas por outros aplicativos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" +"Não é possível convidar parceiros para vários documentos ao mesmo tempo." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"Não é possível mover os seguintes itens, pois isso criaria uma hierarquia recursiva:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "Inacessível" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Caixa de entrada" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" +"Valores incorretos. Use uma das seguintes opções para os seguintes campos: " +"%(hints)s.)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Conteúdo indexado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Usuários internos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "Direitos dos usuários internos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "Os usuários internos podem %(action)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "ID de pasta inválido" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "Operação inválida" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "Função inválida." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "O anexo é editável?" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Foi favoritado?" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "É um seguidor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "É considerado multipágina?" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" +"Não é possível mover documentos arquivados ou documentos para pastas " +"arquivadas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"Os itens que você deseja restaurar estão incluídos em pastas arquivadas. Para restaurar esses itens, você deve restaurar as seguintes pastas de inclusão:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "Os itens na lixeira serão excluídos para sempre após %s dias." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" +"Os itens movidos para a lixeira serão excluídos para sempre após %s dias." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "Último acesso em" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Jurídico" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Vamos processar documentos em sua caixa de entrada.
    Dica: use " +"marcadores para filtrar documentos e estruturar seu processo." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" +"Vamos processar essas faturas: envie para o espaço de trabalho do " +"financeiro." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Vamos processar esse documento que vem do nosso scanner." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Vamos marcar esse e-mail como jurídico
    Dicas: as ações podem ser " +"adaptadas ao seu processo, de acordo com o espaço de trabalho. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Link" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "Acesso ao link oculto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "Direitos de acesso ao link" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "URL do link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Link copiado para a área de transferência!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "Link copiado para a área de transferência." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "Links copiados para a área de transferência!" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Detecção de entrada baseada na parte local" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Travar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Travado" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Travado por" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Registrar uma nota..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Entrar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Sair" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "E-mail: %s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "Marcar atividades como concluídas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "Mesclar PDFs" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Mensagem" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Erro na entrega da mensagem" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Mensagens" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Tipo Mime" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "Referência de documentos ausentes." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Modelo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modelos" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Meses" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Mover esta página para a lixeira" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Mover para a lixeira" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Mover para a lixeira" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "Mover para a lixeira?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Movido para a lixeira" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "É necessário ter o link para acessar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Minhas atividades" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Prazo da minha atividade" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Meus documentos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "Meu drive" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "As funções NULL devem ter uma last_access_date definida" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nome" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "Nome/Extensão" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Novo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Novo arquivo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "Nova pasta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Novo grupo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Evento no calendário para a próxima atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Prazo da próxima atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Resumo da próxima atividade" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Tipo da próxima atividade" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Nenhum tipo de atividade foi encontrado. Vamos criá-los!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "Nenhum alias configurado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Nenhum documento foi selecionado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "Nenhum item selecionado" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "Ninguém na internet pode acessar" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Nenhum link compartilhado" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Nenhum" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Não é um arquivo" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "Não é uma pasta." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Não anexado" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Nota" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Notificar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Número de ações" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Número de erros" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Número de mensagens que requerem ação" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Número de mensagens com erro de entrega" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Logo da Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Site da Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Mais antigo" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "Somente os gerentes de documentos podem fixar pastas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "Somente os gerentes de documentos podem definir aliases." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "Somente os gerentes de documentos podem definir um alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "Somente as pastas raiz de propriedade do OdooBot podem ser fixadas." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "Somente pessoas com acesso podem abrir com o link" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "Abrir #{document_url.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "Abrir pasta #{subfolder.name}'1" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "Abra o painel de permissões" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" +"Operação não suportada. Em vez disso, use \"Mover para a lixeira\" / " +"`action_archive`." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" +"Operação não suportada. Em vez disso, use \"Restaurar\" / " +"`action_unarchive`." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"ID opcional de uma thread (registro) à qual todas as mensagens recebidas " +"serão anexadas, até mesmo quando não sejam respostas à thread. Se definido, " +"isso desabilitará totalmente a criação de novos registros." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "Mensagem opcional..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Ou enviar e-mails para" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Outro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Proprietário" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Proprietário: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "Proprietário: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "Proprietário: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Diretório Pai" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Modelo principal" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Caminho principal" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID da thread do registro primário" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Modelo primário que contém o alias. O modelo que contém a referência de " +"alias não é necessariamente o modelo dado por alias_model_id (exemplo: " +"projeto (parent_model) e tarefa (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Transferência parcial" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Usuário" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "Pessoas com acesso" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Fixar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "Fixado nas raízes da empresa" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" +"Faça login ou entre em contato com a pessoa que compartilhou esse link para " +"obter mais informações." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Política para publicar uma mensagem no documento usando o MailGateway.\n" +"– Todos: qualquer um pode escrever\n" +"– Usuários: somente usuários autenticados\n" +"– Seguidores: apenas seguidores do documento relacionado ou membros dos seguintes canais\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Apresentar" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Apresentações" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "Visualizar arquivos" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Projeto" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Avaliações" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Recentes" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "Documentos acessados recentemente." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Registro" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID da thread do registro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Páginas restantes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Os e-mails de lembrete foram enviados." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Lembrete para carregar seu documento {{ object.name and ' : ' + object.name " +"or '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "Remover acesso" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Remover membro" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "Remover marcador caixa de entrada" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "Remover marcador a validar" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "Remover todos os marcadores" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "Remover estrela" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Renomear" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Solicitação" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Atividade de solicitação" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Solicitação para" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Solicitar um documento" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Solicitar um arquivo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Solicitado\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Documento solicitado" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Documentos solicitados" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "Parceiro do solicitante" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Nome do modelo do recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID do recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Modelo do recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Nome do recurso" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Responsável" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Usuário responsável" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Restaurar" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Restrito" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Pasta restrita" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "Reverter alterações" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Função" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Erro no envio de SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Vendas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Salvar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "Salvar ou descartar as alterações primeiro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "Salvando..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Selecionar todos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Selecionar a página em foco" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Selecionar a próxima página" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Selecionar as próximas páginas do grupo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Selecionar a página anterior" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Selecionar as páginas anteriores do grupo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Selecionar/desmarcar todas as páginas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Enviar" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "Enviar para o financeiro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Envie essa carta ao departamento jurídico, atribuindo os marcadores " +"corretos." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Enviado ao usuário ao solicitar um documento a ele" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Sequência" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "Definir ações" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Definir o atraso de exclusão de documentos na Lixeira" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "Definir data de expiração" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Defina lembretes nas atividades para notificar os usuários que não fizeram o" +" carregamento do documento solicitado" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Definições" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Compartilhar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "Compartilhar: %(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "Compartilhado comigo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "Compartilhando..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Atalho" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "Atalho criado" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "Atalho criado no Meu drive" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "Os atalhos só podem ser criados um de cada vez." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "Os atalhos não podem alterar o documento de destino." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "Os atalhos não podem conter documentos." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Tamanho:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" +"Não foi possível fazer o carregamento de alguns arquivos (tamanho máximo: " +"%s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Documento de origem" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "As pastas especiais não podem ser compartilhadas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Dividir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Dividir PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "Dividir todas as páginas brancas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Dividir páginas selecionadas" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Favoritos" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status baseado em atividades\n" +"Atrasado: data de vencimento já passou\n" +"Hoje: data da atividade é hoje\n" +"Planejado: atividades futuras." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Permanecer aqui" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Estrutura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Resumo" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Marcador" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Nome do marcador" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "Nome de marcador já utilizado" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Marcadores" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Texto" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "Texto exibido ao passar o mouse sobre esse marcador" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "O atraso da exclusão deve ser positivo." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "O URL do documento foi copiado para sua área de transferência." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "O documento foi movido." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"Os seguintes documentos não podem ter alias: \n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"Os seguintes documentos/pastas não podem pertencer a um usuário do portal: \n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "Os seguintes documentos/atalhos têm uma incompatibilidade de tipo: \n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" +"Os atalhos a seguir não podem ser definidos como superiores de documentos: " +"\n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"O modelo (tipo de documento do Odoo) ao qual esse alias corresponde. " +"Qualquer e-mail recebido que não responda a um registro existente causará a " +"criação de um novo registro desse modelo (ex.: uma tarefa de projeto)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"O nome do alias de e-mail, por exemplo, 'empregos', se desejar receber " +"e-mails enviados a " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Este mês" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Esta semana" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "Essa ação não existe." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Esse anexo já é um documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "Esse documento não existe ou não está disponível publicamente." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Este documento foi solicitado.\n" +" Carregue ele." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "Este documento foi restaurado." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" +"Esse arquivo foi enviado para a lixeira e será excluído para sempre em %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "Essa pasta não existe." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "Isso é um atalho" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "Esse parceiro já está definido neste documento." + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Representam as diferentes categorias de coisas que você precisa fazer (ex.: " +"\"ligar\" ou \"enviar e-mail\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatura" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Status da miniatura" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Dica: configure o scanner para enviar todos os documentos para esse " +"endereço." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Dica: Transforme seu negócio em uma empresa informatizada" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "A validar" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "A validar" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Hoje" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Alternar favoritos" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Dica" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Lixeira" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "Gestão da lixeira" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Verdadeiro se for possível editar o anexo do link." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tipo" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Tipo de atividade de exceção registrada." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"O URL %s não parece completo, pois não começa com http(s):// ou ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "Imagem de pré-visualização do URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "Ação indisponível." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Destravar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Sem nome" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Desafixar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Enviar" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Carregue um arquivo ou arraste-o para cá." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Solicitar envio de arquivo" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Usuário" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "Função de acesso do usuário" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Permissão do usuário" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "CPF/CNPJ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Validado" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Vídeos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Visualizador" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Quer transformar seu negócio em uma empresa informatizada? Venha " +"conhecer o Odoo Documentos." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Mensagens do site" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Histórico de comunicação do site" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Semanas" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "O que você quer fazer com as páginas restantes?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"Uau... 6 documentos processados em poucos segundos! Tudo em dia.
    O tour " +"foi concluído. Tente fazer o carregamento de seus próprios documentos agora." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Você" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "Você não tem permissão para (des)arquivar documentos." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "Você não tem permissão para (des)fixar pastas" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" +"Você não tem permissão para alterar a propriedade de documentos que não lhe " +"pertencem." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "Você não tem permissão para excluir todos esses itens." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "Você não tem permissão para executar ações incorporadas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "Você não tem permissão para realizar essa operação." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "Você não tem permissão para fixar/desligar ações incorporadas." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "Você não tem permissão de edição nessa pasta." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Você pode enviar um arquivo diretamente de seu computador ou dispositivo ou " +"pode copiar e colar o link para seu arquivo na internet." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "Você não pode fixar ações nessa pasta." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "Não é possível fazer ping de uma ação nesse documento." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "Não é possível fazer ping desse tipo de ação." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" +"Não é possível atualizar o acesso de um atalho; em vez disso, atualize seu " +"destino." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "Não é possível acessar essa pasta_id." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" +"Não é possível criar atalhos ou mover documentos para essa pasta especial." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "Não é possível acessar as pastas na lixeira." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" +"Não é possível alterar o proprietário de documentos que não sejam de sua " +"propriedade." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "Não é possível excluir os marcadores usados nas ações do servidor." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "Não é possível duplicar documentos na Lixeira." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "Não é possível mover pastas ou arquivos que estejam na lixeira." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "Não é possível remover esse parceiro" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "Não é possível compartilhar vários documentos ao mesmo tempo" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" +"Você não tem direitos de acesso suficientes para excluir esses documentos." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "Você não tem o direito de mover documentos para essa pasta." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" +"Você deve estar em um espaço de trabalho que pode ser fazer gravações para " +"fazer upload de arquivos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "Sua função: %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "Seu espaço individual." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "alias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "bytes" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "dias." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "documento" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "documentos" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "ex.: Discutir proposta" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "ex.: finanças" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "ex.: Despesas ausentes" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "ex.: Validar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "ex.: https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "ex.: minhaempresa.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "arquivos" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "folder" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "pastas," + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "itens selecionados" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "selecionar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "compartilhou um documento com você.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "compartilhou uma pasta com você.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "compartilhado por" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "compartilhou este documento com você:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "compartilhou essa pasta com você:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "código de status: %(status)s, mensagem: %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "sem nome" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" URL" diff --git a/addons_extensions/documents/i18n/ro.po b/addons_extensions/documents/i18n/ro.po new file mode 100644 index 000000000..43c7ea5d0 --- /dev/null +++ b/addons_extensions/documents/i18n/ro.po @@ -0,0 +1,3709 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Corina Calin, 2024 +# Maria Muntean, 2024 +# Lyall Kindmurr, 2024 +# Wil Odoo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Wil Odoo, 2024\n" +"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (copie)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s Fișiere" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" +"%s fișier(ele) nu sunt mutate deoarece sunt blocate de un alt utilizator" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Deselectați această pagină deoarece intenționăm să procesăm mai întâi" +" toate facturile." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Powered by" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Încărcați" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Documente" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Legate de
    Record
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Document solicitat" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Solicitare" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Document Solicitat" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Un dicționar Python care va fi citit pentru a oferi valori implicite la " +"crearea de noi înregistrări pentru acest alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Acces" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Eroare acces" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Access Token" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Acțiune" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Acțiune necesară" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Activ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Activități" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Activitate" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Decorator Excepție Activitate" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Planuri de activitate" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Stare activitate" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tip activitate" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Pictograma tipului de activitate" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Tipuri de activitate" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Tip activitate" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Adaugă" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Adăgați Fișier" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Adăugare URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Adăugați fișier nou" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Adăugați persoane sau adrese de e-mail..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrator" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Reclame" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Alias Contact Securitate" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Alias Domeniu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Alias Nume de domeniu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Alias Email" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Alias nume" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Stare Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Starea aliasului evaluată pe ultimul mesaj primit." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Model de Alias" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Tot" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"O modalitate ușoară de a procesa mesajele primite este să vă configurați " +"scanerul pentru a trimite PDF-uri către e-mailul din spațiul de lucru. " +"Fișierele scanate vor apărea automat în spațiul dvs. de lucru. Apoi, " +"procesați-vă documentele în bloc cu instrumentul de împărțire: lansați " +"acțiuni definite de utilizator, solicitați o semnătură, convertiți în " +"facturi ale furnizorului cu AI etc." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "A apărut o eroare la încărcare." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Oricine care are legătura" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Arhivați fișier(e) originale" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Deoarece acest PDF conține mai multe documente, să împărțim și să procesăm " +"în bulk." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Atașament" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Număr atașamente" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Descriere Atașament" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Nume atașament" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Tip Atașament" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Factură achiziție" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Pagină goală" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Broșuri" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" +"Prin definirea unui folder, activitățile de încărcare vor genera un document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Anulează" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Sumă de control/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Subordonati" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Faceți clic pe un card pentru a selecta documentul." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Click pe un thumbnail pentrua previzualiza documentul." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Click pe separator pagină:nu vrem să împărțim aceste două pagini " +"deoarece aparțin aceluiași document." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Închide" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Culoare" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Companie" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Setări de configurare" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Configurare" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Configurare" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Contactați" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Contracte" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Butoane panou control" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Copiază link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Creează activitate" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Creare activitate nouă" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Creat de" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Creat pe" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Data creării" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Mesaj personalizat de respingere" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Zile" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Valori implicite" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Șterge" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Depreciat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Detalii" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Abandonează" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Document" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Număr Documente" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Nume document" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Solicitare Document" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Documente" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Creare documente mixin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Efectuat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Terminat!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Descarcă" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Descărcați toate fișierele" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Ciornă" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Plasați fișierele aici pentru încărcare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Data scadenței în" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Tip scadență" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Duplicare" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Editare" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Editor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Alias de e-mail" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Alias-uri Email" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Email cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Domeniu de e-mail de ex. „example.com” în „odoo@example.com”" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Eroare" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Cheltuială" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Expirare" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Export" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favorit de" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Fișier" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Conținut fișier (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Conținut fișier (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Dimensiune fișier" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Model de ajutor pentru streaming de fișiere pentru controlere" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Fișiere" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Centralizare Fișiere" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Financiar" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Fiscal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Folder" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Urmăritori" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Urmăritori (Parteneri)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Pictogramă Font awesome, de ex. fa-sarcini" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "General" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Grupează după" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "Resurse Umane HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Are mesaj" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Istoric" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Acasă" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Pictogramă" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Pictograma care indică o activitate de excepție." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Dacă este bifat, mesaje noi necesită atenția dumneavoastră." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Dacă este bifată, există mesaje cu eroare de livrare." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Dacă este setat, acest conținut va fi trimis automat utilizatorilor " +"neautorizați în loc de mesajul implicit." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Imagini" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Casuța poștală" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Conținut indexat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Utilizatori interni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Este favorit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Este urmăritor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare pe" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Legal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Să procesăm documentele din Mesaje primite.
    Sfat: utilizați etichete " +"pentru a filtra documentele și a vă structura procesul." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Să procesăm aceste facturi: trimiteți la spațiul de lucru Finance." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Să procesăm acest document, provenind de la scanerul nostru." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Să etichetăm acest e-mail ca legal
    Sfaturi: acțiunile pot fi " +"adaptate procesului dvs., în funcție de spațiul de lucru." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Link" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "Link URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Linkul a fost copiat în clipboard!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Detectare bazată pe partea locală a destinatarului" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Blocare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Blocat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Blocat de" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Scrie o notă..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Autentificare" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Deconectare" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Mesaj" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Eroare de livrare a mesajului" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Mesaje" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Tip MIME" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modele" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Luni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Activitățile mele" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Data limită a activității mele" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Documentele mele" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Nume" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Nou" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Fișier nou" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Grup Nou" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Următoarea activitate din calendar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Data limită pentru următoarea activitate" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Sumarul următoarei activități" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Următorul tip de activitate" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Niciun tip de activitate găsit. Haide să creăm unul!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Niciun document nu a fost selectat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Nici un link distrbuit" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Fără" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Nu este fișier" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Nu este atașat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Notă" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Notificare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Număr de acțiuni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Număr de erori" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Numărul de mesaje care necesită acțiune" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Numărul de mesaje cu eroare de livrare" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Logo Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo Website" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Vechi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Id-ul optional al unei înregistrări la care vor fi atașate toate mesajele " +"primite, chiar dacă nu i-au răspuns. Dacă este setat, acesta va dezactiva " +"complet crearea de înregistrări noi." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Sau trimeți email-uri către" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Altele" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Proprietar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Model părinte" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Cale părinte" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID-ul thread-ului înregistrării părinte" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Modelul părinte care deține aliasul. Modelul care deține referința alias nu " +"este neapărat modelul dat de alias_model_id (example: project (parent_model)" +" and task (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Partener" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Pin" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Politica de a posta un mesaj pe document folosind mailgateway.\n" +"- toată lumea: toată lumea poate posta\n" +"- parteneri: numai parteneri autentificați\n" +"- adepți: numai urmăritori ai documentului aferent sau membri ai canalelor următoare\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Prezent" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Prezentări" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Proiect" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Ratings" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Recent" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Înregistrare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID Înregistrare Thread" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Pagini rămase" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Eliminare membru" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Redenumire" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Solicitare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Solicitare Activitate" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Solicitați la / către" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Solicitare un Document" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Solicitare Fișier" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Document Solicitat" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Documente necesare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID Resursa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Model de resursa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Numele resursei" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Responsabil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Utilizator responsabil" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Restabilire" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Rol" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Eroare livrare SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Vânzări" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Salvează" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Selectează tot" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Trimite" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Trimiteți această scrisoare departamentului juridic, atribuind etichetele " +"potrivite." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Secvență" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Setări" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Partajează" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Shortcut (Comanda rapida)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Dimensiune:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Document sursă" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Separă" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "PDF Split" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Cu steluță" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Stare bazată pe activități\n" +"Întârziată: data activitații este deja trecută\n" +"Astăzi: data activității este astăzi\n" +"Planificate: activități viitoare." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Stai aici" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Structură" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Sumar" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Etichetă" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Nume etichetă" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Etichete" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Text" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Modelul (tipul de document Odoo) căruia îi corespunde acest alias. Orice " +"e-mail care nu răspunde la o înregistrare existentă va determina crearea " +"unei noi înregistrări a acestui model (de exemplu, o sarcină de proiect)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Numele aliasului de e-mail, de ex. „locuri de muncă” dacă doriți să primiți " +"e-mailuri pentru " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Luna aceasta" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Săpt. curentă" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Acest atașament este deja un document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Acestea reprezintă diferitele categorii de lucruri pe care trebuie să le " +"faceți (de ex. \"Apel\" sau \"Trimite e-mail\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatură" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Sfat: configurați scanerul pentru a trimite toate documentele la această " +"adresă." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Tip: Deveniți o companie fără hârtie" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "De validat" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Pentru validare" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Astăzi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Comutare favorit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Sfat" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Gunoi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tip" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Tipul de activitate de excepție înregistrată." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Deblocați" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Fără nume" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Nemarcat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Încărcare" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Utilizator" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Permisiune utilizator" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "TVA" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Validat" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Videos" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Telespectator" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Mesaje de pe site-ul web" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Istoricul comunicării pe site-ul web" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Săptămâni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Dumneavoastră" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Poți încărca un fișier din calculator sau introduce un link catre fișierul " +"de pe internet." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "zile." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "document" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "documente" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "de exemplu. Discutați propunerea" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "de exemplu. Finanţe" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "Selectează" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "distribuit de" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "fără nume" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/ru.po b/addons_extensions/documents/i18n/ru.po new file mode 100644 index 000000000..3ddf29ab2 --- /dev/null +++ b/addons_extensions/documents/i18n/ru.po @@ -0,0 +1,3483 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-02-12 10:54+0000\n" +"PO-Revision-Date: 2024-01-30 15:14+0400\n" +"Last-Translator: \n" +"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr " + Добавить метку" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (копия)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "%s Документы" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "%s Документы (%s заблокировано)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s файл(ы) не перемещаются, потому что заблокированы другим пользователем" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s создан новый документ(ы)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s страница(и) удалена" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "(Remaining pages" +msgstr "(Остальные страницы" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr "срок действия истек" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr ". Отсканированные файлы автоматически появятся в рабочей области. Затем обрабатывайте документы в массовом порядке с помощью инструмента разделения: запускайте определенные пользователем действия, запрашивайте подпись, конвертируйте в счета поставщиков с помощью AI и т. д." + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Совет: Станьте безбумажной компанией" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "Отмените выбор этой страницы, так как мы планируем сначала обработать все счета." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid "" +"
    \n" +" is sharing content with you" +msgstr "" +"
    \n" +" делится с вами контентом" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Находится" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid " Download All" +msgstr " Скачать все" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid " Upload" +msgstr " Загрузить" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Actions" +msgstr "Действия" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Documents" +msgstr "Документы" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Похожие записи
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "Requested Document" +msgstr "Запрашиваемый документ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;Документы." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Запрос" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Запрашиваемый документ" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Запрос документов:
    \n" +" \n" +" Входящие финансовые\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Здравствуйте, OdooBot,\n" +"

    \n" +" Это дружеское напоминание о необходимости загрузить запрошенный вами документ:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Входящие финансовые\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Пример примечания.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Пожалуйста, предоставьте нам недостающий документ до истечения срока действия ссылки (планируется на 2021-05-17).\n" +"

    \n" +" Спасибо,\n" +" \n" +"
    \n" +" --
    Администратор Митчелл
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" Срок действия этой ссылки истекает 2021-05-17.
    \n" +"
    \n" +" Работает на Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Запрос документов:
    \n" +" \n" +" Входящие финансовые\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Здравствуйте, OdooBot,\n" +"

    \n" +" OdooBot(odoobot@example.com) просит вас предоставить следующий документ:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Входящие финансовые\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Пример заметки.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Пожалуйста, предоставьте нам недостающий документ до истечения срока действия ссылки (планируется на 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" Срок действия этой ссылки истекает 2021-05-17.
    \n" +"
    \n" +" Работает на Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "Словарь Python, который будет оцениваться для получения значений по умолчанию при создании новых записей для этого псевдонима." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "Набор условий и действий, которые будут доступны всем вложениям, соответствующим условиям" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "Во избежание рекурсии рабочее пространство не может иметь одно из своих дочерних пространств, определенное как Parent Workspace." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "Рабочая область наследует теги своей родительской рабочей области" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Доступ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Ошибка доступа" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Группы доступа" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "Уровни доступа" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Токен доступа" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Действие" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "Название кнопки действия" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "Счетчик действий" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "Название действия" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Требуются действия" + +#. module: documents +#. odoo-javascript +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Действия" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model:ir.model.fields,field_description:documents.field_documents_folder__active +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Active" +msgstr "Активный" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "Активность" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "Активность" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Оформление исключения активности" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "Примечание о деятельности" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Планы деятельности" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Состояние активности" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Тип активности" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Значок типа активности" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Типы Активности" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "Тип мероприятия" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Добавить" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Добавить файл" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "\tДобавить Url" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "Добавить ссылку" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Add a new plan" +msgstr "Добавить новый план" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Добавить новый файл" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Администратор" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "Объявления" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Алиас" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "Безопасность контакта с псевдонимом" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain_id +msgid "Alias Domain" +msgstr "Псевдоним Домен" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias Domain Name" +msgstr "Псевдоним Доменное имя" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_full_name +msgid "Alias Email" +msgstr "Псевдоним электронной почты" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Псевдоним" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "Статус псевдонима" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Статус псевдонима оценивается по последнему полученному сообщению." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "Модель с псевдонимом" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "Все загруженные файлы" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "Позволяет" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "Позволяет управлять документами." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "Уже связанные документы" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "Простой способ обработки входящих писем - настроить сканер на отправку PDF-файлов по адресу" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "Простой способ обработки входящих писем - настроить сканер на отправку PDF-файлов на электронную почту рабочего пространства. Отсканированные файлы будут автоматически появляться в рабочей области. Затем обрабатывайте документы в массовом порядке с помощью инструмента разделения: запускайте определенные пользователем действия, запрашивайте подпись, конвертируйте в счета поставщиков с помощью AI и т. д." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "При загрузке произошла ошибка." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "Архив" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Архивирование исходного файла(ов)" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archived" +msgstr "Архивировано" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Archived Workspace" +msgstr "Заархивированное рабочее пространство" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Вы уверены, что хотите удалить страницу с фокусом?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Вы уверены, что хотите удалить выбранную страницу (страницы)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Вы уверены, что хотите удалить эту страницу?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "Вы уверены, что хотите навсегда стереть документ?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "Вы уверены, что хотите навсегда стереть документы?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "Поскольку этот PDF содержит несколько документов, давайте разделим их и обработаем в массовом порядке." + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "Попросите подтверждение" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "Активы" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Прикрепить к" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Вложение" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "Количество вложений" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Описание вложения" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Имя вложения" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Тип вложения" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "Автоматизируйте работу с входящими сообщениями, используя отсканированные документы или письма, отправленные на электронный псевдонимinbox-financial." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "Доступные правила" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "ТТН" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "Бренд 1" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "Бренд 2" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "Брошюры" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "Определив папку, действия по загрузке будут генерировать документ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "Байт" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "Может загрузить" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Can't share documents of different workspaces." +msgstr "Невозможно совместно использовать документы из разных рабочих пространств." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Отменить" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "Cannot move folder under the given parent as this would create a recursive hierarchy" +msgstr "Невозможно переместить папку в указанную родительскую, так как это создаст рекурсивную иерархию" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "Категоризируйте, делитесь и отслеживайте все свои внутренние документы." + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Категория" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Контрольная сумма/SHA1" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "Выберите запись, которую нужно связать" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Choose or Configure Email Servers" +msgstr "Выбор или настройка серверов электронной почты" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Нажмите на карточку, чтобы выбрать документ." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Нажмите на миниатюру, чтобы просмотреть документ." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "Щелкните на разделителе страниц: мы не хотим разделять эти две страницы, поскольку они принадлежат одному документу." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Закрыть" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Закрыть инструменты разделения" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Компания" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "Тип состояния" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Условия" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Параметры конфигурации" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Конфигурация" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Контакты" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "Содержит" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "Контракты" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Кнопки панели управления" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Создать" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "Создать долю" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "Создать Счет Поставщика" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "Создать новый вид деятельности" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Создано" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Создано" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Дата создания" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "Критерий" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Пользовательское сообщение об отказе" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Дней" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Значения по умолчанию" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "Значения по умолчанию для загруженных документов" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "Задержка после постоянного удаления документа в корзину (дней)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Удалить" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Удаление сосредоточенных или выбранных страниц" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Delete permanently" +msgstr "Удалить навсегда" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Задержка удаления" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__deletion_delay +msgid "Deletion delay" +msgstr "Задержка удаления" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Задержка удаления (дни)" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "Утратить" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "Устаревшие" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Описание" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Отменить" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "Вы действительно хотите снять эту запись?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "Вы хотите выйти без сохранения или собрать страницы в один документ?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "Документ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Количество документов" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Наименование документа" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "Владелец документа" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Планы документов" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Запрос документов" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "Запрос документа {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "Запрос документа: %s Загружено: %s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Запрос документов: Напоминание" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "Права пользователя на загрузку документов" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "Действие тегов документооборота" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "Список документов" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Дата документа" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Документ: Запрос документа" + +#. module: documents +#. odoo-javascript +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Документы" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Документы Ссылка на запись" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "Документы Поделиться" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "Рабочая область документов" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Миксин для создания документов" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "Не содержит" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Домен" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid "Download" +msgstr "Скачать" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "Download #{document.name}" +msgstr "Загрузка #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "Download all files" +msgstr "Загрузить все файлы" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "Загрузка и выгрузка" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid "Download file" +msgstr "Скачать файл" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Перетащить файлы для загрузки" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "Дата выполнения В" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "Тип исполнения" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Duplicate" +msgstr "Дублировать" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Редактировать" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "Редактирование связанной записи" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_email +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "Псевдоним почты" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Электронная почта cc" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Ошибка" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Побег Просмотр/выбор/выход" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "Исключенные теги" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.js:0 +msgid "Exit Split Tools" +msgstr "Выход из инструментов разделения" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Выйти без сохранения" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Расход" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "Истекший" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +msgid "Export" +msgstr "Экспорт" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "Фасет уже существует в этой папке" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Избранное" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Файл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Содержимое файла (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Содержимое файла (необработанное)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Расширение файла" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Размер файла" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Вспомогательная модель потоковой передачи файлов для контроллеров" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "Файл загружен:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Централизация файлов" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "Файлы будут отправлены в корзину и удалены навсегда" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "Файлы будут отправлены в корзину и удалены навсегда через %s дней." + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "Финансы" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "Финансы" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "Фискальный" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "Финансовые годы" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Первая страница следующей группы" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Ориентируйтесь на первую страницу предыдущей группы" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Следующая страница" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Фокус предыдущая страница" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "Папка" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Подписчики" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Подписчики" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Шрифт, отличный значок, например. к.-а.-задачи" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Планируемые действия" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Соберите в одном документе" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "Гб" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "Группировать по" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "Группы, способные видеть рабочую область и читать ее документы без прав на создание/редактирование." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "Группы, способные видеть рабочую область и читать/создавать/редактировать ее документы." + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "персонал" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "Есть сообщение" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "История" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "ID записи родителя, содержащей алиас (например, проект содержит псевдоним для создания записи)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Иконка" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Значок, обозначающий исключение Дела." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Если флажок установлен, значит, новые сообщения требуют вашего внимания." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Если отмечено, некоторые сообщения имеют ошибку доставки." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "Если этот параметр установлен, то вместо сообщения по умолчанию неавторизованным пользователям будет автоматически рассылаться это содержимое." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "Форма поиска по изображению / видео" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "Изображения" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Входящие" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "Включить вложенные папки" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "Входящие письма, отправленные на почтовый псевдоним inbox, будут автоматически добавлены в ваш почтовый ящик." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Индексированное содержимое" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "Внутренний" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Редактируемое вложение" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Избранное" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "Является подписчиком" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "Разделяется" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "Считается многостраничным" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "Объекты в корзине будут удалены навсегда через %s дней." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "Объекты, перемещенные в корзину, будут удалены навсегда через %s дней." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "Kb" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "Знание" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Последнее обновление" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Последнее обновление" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Поздние Мероприятия" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "Юридическая информация" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "Давайте обрабатывать документы в папке \"Входящие\".
    Совет: используйте теги для фильтрации документов и структурирования процесса." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Давайте обработаем эти счета: отправьте в рабочую область \"Финансы\"." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Давайте обработаем этот документ, полученный со сканера." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "Давайте пометим это письмо как юридическое
    Советы: действия могут быть адаптированы к вашему процессу, в соответствии с рабочим пространством." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "Ограничьте группы чтения документами, владельцами которых они являются." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "Ограничьте группы записи документами, владельцами которых они являются." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Ссылка" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "Ссылка создана:" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "Ссылка на запись" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Links cannot be shared and therefore will be excluded." +msgstr "Ссылки не могут быть использованы совместно и поэтому будут исключены." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "Live" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Обнаружение входящих на основе локальных частей" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Заблокировать" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "Заблокировано" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Заперто" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "Запишите в журнал..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Войти" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Выйти" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "Пометить как черновик" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "Пометить все как выполненные" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "Маркетинг" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "Мб" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Сообщение" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "Ошибка доставки сообщения" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Сообщения" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Mime-тип" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "Разное" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Модель" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Модели" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Месяцев" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "Переместить во входящие" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Переместить эту страницу в корзину" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "Перейти в рабочее пространство" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Переместить в корзину" + +#. module: documents +#. odoo-javascript +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +msgid "Move to trash?" +msgstr "Переехать на мусорку?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "Множественные значения" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Мои мероприятия" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Крайний срок моей активности" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Мои документы" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "Мое избранное" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Имя" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "Название ссылки на ресурс" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "Новый" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Новый файл" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Новая группа" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "Новая метка" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "Новое рабочее пространство" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Следующее событие календаря активности" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Следующий срок мероприятия" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Резюме следующего действия" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Следующий Тип Мероприятия" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Виды деятельности не найдены. Давайте создадим один!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "Псевдоним не настроен" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Не выбран ни один документ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "Безлимитный" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "Нет общих ссылок" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Не файл" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Не прилагается" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Заметка" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Число действий" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__links_count +msgid "Number of Links" +msgstr "Количество ссылок" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "Число ошибок" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Количество сообщений, требующих принятия мер" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Количество недоставленных сообщений" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Логотип Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Сайт Odoo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "Ограничение на одну запись" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "Открытая болтовня" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "Необязательный идентификатор потока (записи), к которому будут прикрепляться все входящие сообщения, даже если на них не было ответа. Если установить это значение, то создание новых записей будет полностью запрещено." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Или отправьте электронное письмо по адресу" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Другое" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "Только собственные документы" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "Только собственные документы (запись)" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "Функция \"Только собственные документы\" не может быть включена для групп записи, если она не включена для групп чтения." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Владелец" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Владелец: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "PDF/Документ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Основная модель" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "Родительский путь" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Номер родительской цепочки записей" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "Родительская рабочая область" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "Родительская модель, на которую ссылается псевдоним. Модель, на которую ссылается псевдоним, не обязательно является моделью, заданной alias_model_id (пример: проект (родительская_модель) и задача (модель))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Частичная передача" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "Пожалуйста, свяжитесь с человеком, который поделился этой ссылкой, для получения дополнительной информации." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Политика публикации сообщения в документе с помощью mailgateway.\n" +"- все: все могут отправлять сообщения\n" +"- партнеры: только аутентифицированные партнеры\n" +"- последователи: только последователи связанного документа или участники следующих каналов\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Сейчас" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "Презентации" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "Проект" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "Рейтинги" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "Читать доступ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "Группы чтения" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Запись" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Номер цепочки записей" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "Смежное рабочее пространство" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Оставшиеся страницы" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Письма с напоминаниями были отправлены." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "Напоминание о необходимости загрузить документ{{ object.name and ' : ' + object.name or '' }}" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Удалить" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "Заменить" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "Заменить на" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Запрос" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Запрос деятельности" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Запрос" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Запросить документ" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Запросить файл" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested" +msgstr "Запрошенный" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Запрошено\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Запрашиваемый документ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "Необходимые метки" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Название модели Res" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Номер ресурса" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Модель ресурсов" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Название Ресурса" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Ответственный" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Ответственный пользователь" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Восстановить" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Ошибка доставки SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "Продажи" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Сохранить" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "Деятельность по расписанию" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Выбрать все" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Выберите страницу с фокусом" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Выберите следующую страницу" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Выберите следующие страницы группы" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Выберите предыдущую страницу" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Выберите предыдущие страницы группы" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Выбрать/отменить выбор всех страниц" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "Отправьте это письмо в юридический отдел, присвоив ему нужные теги." + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "Отправить в юридический отдел" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Отправляется партнеру при запросе у него документа" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Последовательность" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2024 Contracts" +msgstr "Контракты на 2024 год" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "Установить контакт" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "Владелец набора" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "Установить метку" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Установка задержки удаления документов в корзине" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "Установите напоминания в действиях, чтобы уведомить пользователей, которые не загрузили запрашиваемый документ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "Установите активность на владельца документа" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Настройки" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "Поделиться" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "Поделиться ссылкой" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "Поделиться ссылкой" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "Ссылки Поделиться" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "Предоставление общего доступа к выбранным файлам" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "Поделиться выбранным рабочим пространством" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "Поделиться этим доменом" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "Поделитесь этой подборкой" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "Тип акции" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "Доля, использованная для создания этого документа" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "Общий" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "Загрузить Документы" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "Общие теги" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "Акции и электронные письма" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Показать все записи, у которых дата следующего действия наступает до сегодняшнего дня" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Размер" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid "Size:" +msgstr "Размер:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Некоторые файлы не удалось загрузить (максимальный размер: %s)." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "Извините, эта ссылка больше не действительна." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "Конкретная модель, связанная" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "Разделить" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +msgid "Split PDF" +msgstr "Разделить PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Разделение выбранных страниц" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Статус" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Статус, основанный на мероприятии\n" +"Просроченная: Дата, уже прошла\n" +"Сегодня: Дата мероприятия сегодня\n" +"Запланировано: будущая деятельность." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Оставайтесь здесь" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "Подрабочие пространства" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Резюме" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Тег" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "Категории тегов" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "Тег категории" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Название тега" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "Для этого параметра уже существует тег" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "Категории тегов, определенные для этого рабочего пространства" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Теги" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "Шаблоны" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "Текст" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "Текст, отображаемый при наведении курсора на эту категорию тегов или ее теги" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "Задержка удаления должна быть положительной." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "The links and requested documents are not shareable." +msgstr "Ссылки и запрашиваемые документы не подлежат распространению." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "Модель (Вид Документа), которому соответствует этот псевдоним. Любая входящая электронная почта, которая не отвечает существующей записи, вызовет создание новогой записи этой модели (например, Задача Проекта)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "Имя Алиаса Эл.Почты, например, \"jobs\" если вы хотите перехватывать почту для " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "Url ресурса был скопирован в ваш буфер обмена." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard. Links were excluded." +msgstr "Url ресурса был скопирован в ваш буфер обмена. Ссылки были исключены." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "Этот маркер доступа уже существует" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Это вложение уже является документом" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "Это приложение будет доступно только для выбранных групп пользователей" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Этот документ был запрошен.\n" +" Загрузите его." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This file has been restored" +msgstr "Этот файл был восстановлен" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This file has been sent to the trash and will be deleted forever on the %s" +msgstr "Этот файл был отправлен в корзину и будет удален навсегда на %s" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "Это рабочее пространство будет доступно только для выбранной компании" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "Those represent the different categories of things you have to do (e.g. \"Call\" or \"Send email\")." +msgstr "Они представляют собой различные категории действий, которые вам предстоит выполнить (например, \"Позвонить\" или \"Отправить электронное письмо\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Миниатюра" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Состояние миниатюр" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "Совет: настройте сканер на отправку всех документов по этому адресу." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Совет: Станьте безбумажной компанией" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "Проверить" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Чтобы подтвердить" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Сегодняшние Дела" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "Переключатель выпадающего списка" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Переключить любимое" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "Подсказка" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "Trash" +msgstr "Корзина" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Верно, если мы можем редактировать вложение ссылки." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Тип" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Тип Дела для исключения в записи." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "URL %s does not seem complete, as it does not begin with http(s):// or ftp://" +msgstr "URL %s кажется неполным, поскольку не начинается с http(s):// или ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "URL Предварительный просмотр изображения" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Разблокировать" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Без имени" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "Upload" +msgstr "Загрузить" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "Загрузите файл или перетащите его сюда." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "Загрузить документ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "Загрузка по электронной почте" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "Загрузка по электронной почте" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Запрос на загрузку файла" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Пользователь" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "НДС" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "Действует до" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "Проверка" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "Подтверждено" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid "Validity date:" +msgstr "Срок действия:" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "Видео" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "Хотите стать безбумажной компанией? Давайте познакомимся с Odoo Documents." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Веб-сайт сообщения" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "История общений с сайта" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Недель" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "Что вы хотите сделать с оставшимися страницами?" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "Действия" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "Правило рабочего процесса" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "Рабочая область" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "Рабочие пространства" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "Ого... 6 документов обработаны за несколько секунд, вы в порядке.
    Тур завершен. Попробуйте загрузить свои собственные документы." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "Доступ для записи" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "Группы для записи" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "Напишите здесь всплывающую подсказку для этого действия" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "Вы можете загрузить файл с вашего компьютера или скопировать/вставить ссылку на свой файл в Интернете." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot upload content in this workspace" +msgstr "Вы не можете загружать содержимое в эту рабочую область" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "Вы не имеете права перемещать документы в это рабочее пространство." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "У вас нет прав на перемещение документов в это рабочее пространство" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "Для загрузки файлов вы должны находиться в определенной рабочей области" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "YouTube Video" +msgstr "YouTube видео" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "дней." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "удалить" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "документ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "documents" +msgstr "документы" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "выбранные документы" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "скачать" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "например, Предложить обсудить" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "например, финансы" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "например, отсутствующие расходы" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "например, статус" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "например, подтвердить" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "например, подтвердить подлинность документа" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "e.g. domain.com" +msgstr "например, domain.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "например, https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "расширение_файла" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid "files" +msgstr "файлы" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "восстановить" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "выбрать" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "выбрано" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "shared by" +msgstr "разделенный" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "код состояния: %s, сообщение: %s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "безымянный" diff --git a/addons_extensions/documents/i18n/sk.po b/addons_extensions/documents/i18n/sk.po new file mode 100644 index 000000000..4293d54ae --- /dev/null +++ b/addons_extensions/documents/i18n/sk.po @@ -0,0 +1,2886 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# gebri , 2022 +# Matus Krnac , 2022 +# SAKodoo , 2022 +# Damian Brencic , 2022 +# Jan Prokop, 2022 +# Jaroslav Bosansky , 2022 +# Filip Brenčič , 2022 +# Martin Trigaux, 2022 +# Rastislav Brencic , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 16:01+0000\n" +"PO-Revision-Date: 2022-09-22 05:46+0000\n" +"Last-Translator: Rastislav Brencic , 2023\n" +"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "#{document_is_url and 'Link to ' or 'Download '}#{document.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "%sDokumenty" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s súbor(y) neboli presunuté, pretože sú uzamknuté iným používateľom" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr ", ukončí platnosť" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid ". Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2022" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2023" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "Bajty" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "Zrušiť výber tejto stránky pretože plánujeme najskôr spracovať všetky prijaté faktúry." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "Gb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "Kb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "Mb" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Prinášané" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid " Download All" +msgstr " Stiahnuť všetko" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Download" +msgstr " Stiahnuť" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid " Go to URL" +msgstr " Prejdite na adresu URL" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Inbox Financial\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +" \n" +" \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before the link expires (planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "A Python dictionary that will be evaluated to provide default values when creating new records for this alias." +msgstr "Python slovník, bude použitý na poskytnutie predvolených hodnôt pri vytváraní nových záznamov pre tento alias." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "A set of condition and actions which will be available to all attachments matching the conditions" +msgstr "Zoznam podmienok a akcií, ktoré budú k dispozícii pre všetky prílohy zodpovedajúce podmienkam" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "A workspace cannot have one of his child defined as Parent Workspace in order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +#: model:ir.model.fields,help:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "Pracovný priestor zdedí tagy svojho nadradeného pracovného priestoru" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Prístup" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Chyba prístupu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Prístupové skupiny" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "Prístupové oprávnenia" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Prístupový token" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Akcia" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +msgid "Action Button Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "Počet akcií" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "Názov akcie" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Potrebná akcia" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Akcie" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +msgid "Active" +msgstr "Aktívne" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "Aktivity" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Activity" +msgstr "Aktivita" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Označenie výnimky v aktivite" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "Poznámka o činnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Stav aktivity" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Typ aktivity" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ikona typ aktivity" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "Typ aktivity" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Pridať" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Pridať Url" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Add a Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Správca" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "Reklamy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "Alias ​​kontakt bezpečnosť" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Alias názov" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +msgid "Alias domain" +msgstr "Doména aliasu" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "Aliasovaný model" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "Všetky súbory nahrané" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__action +msgid "Allows to" +msgstr "Umožňuje" + +#. module: documents +#: model:ir.module.category,description:documents.module_category_documents_management +msgid "Allows you to manage your documents." +msgstr "Umožňuje spravovať dokumenty." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "An easy way to process incoming mails is to configure your scanner to send PDFs to your workspace email. Scanned files will appear automatically in your workspace. Then, process your documents in bulk with the split tool: launch user defined actions, request a signature, convert to vendor bills with AI, etc." +msgstr "Jednoduchým spôsobom na spracovanie prichádzajúcich e-mailov je konfigurácia skenera tak, aby odosielal súbory PDF na váš e-mail v pracovnom priestore. Naskenované súbory sa automaticky zobrazia vo vašom pracovnom priestore. Potom spracujte svoje dokumenty hromadne pomocou nástroja na rozdelenie: spustite akcie definované používateľom, požiadajte o podpis, konvertujte na dodávateľské faktúry pomocou AI atď." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Archive" +msgstr "Archivovať" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Archived" +msgstr "Archivovaný" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "Majetok" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Priložené k" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Príloha" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "Počet príloh" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Názov prílohy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "Automate your inbox using scanned documents or emails sent to inbox-financial email alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "Dostupné pravidlá" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "Účtenka" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "Značka 1" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "Značka 2" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "brožúry" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "Môže nahrávať" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Cancel" +msgstr "Zrušené" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Kategória" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on the page separator: we don't want to split these two pages as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Zatvoriť" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Spoločnosť" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "Typ podmienky" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Podmienky" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfigurácia" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Configure Email Servers" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "Obsahuje" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "Zmluvy" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Vytvoriť" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "Vytvoriť zdieľanie" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "Vytvoriť novú aktivitu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Vytvoril" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Dátum vytvorenia" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "Kritériá" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Vlastná vrátená správa" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Predvolené hodnoty" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Default values for uploaded documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Zmazať" + +#. module: documents +#: model:ir.actions.act_window,name:documents.documents_folder_deletion_wizard_action +msgid "Delete Confirmation" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "Neschváliť" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "Zrušené" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Popis" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Zrušiť" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Počet dokumentov" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Názov dokumentu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "Vlastník dokumentu" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Vlastník dokumentu" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %s Uploaded by: %s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "Akcia Značky Pracovného Toku Dokumentu" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "Zoznam dokumentov" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-python +#. odoo-javascript +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.module.category,name:documents.module_category_documents_management +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumenty" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder_deletion_wizard +msgid "Documents Folder Deletion Wizard" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "Zdieľanie dokumentov" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "Pracovný priestor pre dokumenty" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Kombinácia tvorby dokumentov" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "Neobsahuje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Doména" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__download +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Stiahnuť" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__action__downloadupload +msgid "Download and Upload" +msgstr "Stiahnite si a nahrajte" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Sem presuňte súbory pre ich nahratie " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "Dátum splatnosti za" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "Typ splatnosti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Upraviť" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "Emailový alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "E-mailová kópia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Chyba" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "Vylúčené tagy" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Výdavky" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "Ukončená platnosť" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Obľúbené" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Súbor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Obsah súboru (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Obsah súboru (nespracovaný)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Veľkosť súboru" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Centralizácia súborov" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "Financie" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "Finančné" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "Fiškálne" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "Fiškálne roky" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "Priečinok" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Odberatelia" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Odberatelia (partneri)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Úžasná ikona fronty napr. fa-tasks" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Future Activities" +msgstr "Budúce aktivity" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "Zoskupiť podľa" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "Groups able to see the workspace and read its documents without create/edit rights." +msgstr "Skupiny sú schopné vidieť pracovný priestor a čítať jeho dokumenty bez práv na vytváranie a úpravy." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "Skupiny sú schopné vidieť pracovný priestor a čítať / vytvárať / upravovať jeho dokumenty." + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "Má správu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "História" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "ID of the parent record holding the alias (example: project holding the task creation alias)" +msgstr "ID nadradeného záznamu obsahujúceho alias (príklad: projekt obsahujúci alias vytvorenia úlohy)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ikona" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ikona indikujúca výnimočnú aktivitu." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Ak označené, potom nové správy vyžadujú vašu pozornosť." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Ak označené, potom majú niektoré správy chybu dodania." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "If set, this content will automatically be sent out to unauthorized users instead of the default message." +msgstr "Ak je nastavený, namiesto predvolenej správy sa tento obsah automaticky odošle neoprávneným užívateľom." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Image/Video" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "Obrázky" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Inbox" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Incoming letters sent to inbox email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indexovaný obsah" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "Interné" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Je obľúbený" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "Odberateľ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "Vedomosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Late Activities" +msgstr "Omeškané aktivity" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "Legálne" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process documents in your Inbox.
    Tip: Use Tags to filter documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Spracujme tieto faktúry: pošlite do pracovného priestoru Finance." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's tag this mail as legal
    Tips: actions can be tailored to your process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "Obmedzte skupiny na čítanie iba dokumentov, ktorých sú vlastníkmi." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Link" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "Naživo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Zamknúť" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "Uzamknuté" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Zamknuté" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "Pridať poznámku..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Login" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Odhlásiť sa" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "Označiť ako koncept" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "Označiť všetko ako hotové" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "Marketing" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "Chyba zobrazovania správ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Správy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Napodobniť typ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "Účtovné záznamy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modely" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Mesiace" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "Presunúť do priečinka doručenej pošty" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "Presunúť do pracovného priestoru" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "Move to parent workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "Viacnásobné hodnoty" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Termín mojej aktivity" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Moje dokumenty" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "Moje obľúbené" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Meno" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Name of the share link" +msgstr "Názov odkazu na zdieľanie" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "Nové" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Kalendár ďalších aktivít eventu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Ďalší konečný termín aktivity" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Zhrnutie ďalšej aktivity" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Typ ďalšej aktivity" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Nie je to súbor" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Nie je pripojený" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Poznámka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Počet akcií" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "Počet chýb" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Počet správ, ktoré vyžadujú akciu" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Počet doručených správ s chybou" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo Logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Webstránka spoločnosti Odoo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "Limit jedneho záznamu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "Otvorte chatovanie" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "Optional ID of a thread (record) to which all incoming messages will be attached, even if they did not reply to it. If set, this will disable the creation of new records completely." +msgstr "Voliteľné ID záznamy, na ktoré budú pripojené všetky prichádzajúce správy, aj keď na to neodpovedali. Ak je nastavené, úplne to zakáže vytváranie nových záznamov." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Iné" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "Iba vlastné dokumenty" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "Own Documents Only may not be enabled for write groups if it is not enabled for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Majiteľ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "PDF/Document" +msgstr "PDF/Dokumenty" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder_deletion_wizard__parent_folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Nadradený model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "Nadradená cesta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID vlákna nadradeného záznamu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "Nadradený pracovný priestor" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "Parent model holding the alias. The model holding the alias reference is not necessarily the model given by alias_model_id (example: project (parent_model) and task (model))" +msgstr "Nadradený model drží alias. Model drží referenciu aliasu nie je nevyhnutne model ktorý zadal alias_model_id (príklad: projekt (parent_model) a požiadavky (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Metóda pre zverejnenie správy na dokumente pri použití mailovej brány.\n" +"- všeci: všetci môžu zverejňovať\n" +"- partneri: iba overený partneri\n" +"- odberatelia: iba odberatelia pridruženého dokumentu alebo členovia príslušných kanálov\n" +"\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Prítomný" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "Prezentácie" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "Projekt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "Prístup pre čítanie" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "Čítacie skupiny" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Záznam" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Zaznamenať ID vlákna" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +msgid "Related Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "Reminder to upload your document{{ object.name and ' : ' + object.name or '' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Odstrániť" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "Vymeniť" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "Nahradiť za" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Požiadavka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Vyžiadajte aktivitu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Vyžiadajte dokument" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Vyžiadajte súbor" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "Requested" +msgstr "Požadované" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Požadovaný dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "Povinné tagy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Názov modelu res" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID zdroj " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Model zdrojov" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Meno zdroja" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Zodpovedný" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Zodpovedný užívateľ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Obnoviť" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Chyba doručenia SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "Predaj" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Uložiť" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "Naplánuj aktivity" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Select/Unselect All: Shift + A" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Postupnosť" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +msgid "Set As 2023 Contracts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "Nastaviť kontakt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "Nastaviť vlastníka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "Nastavte tagy" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "Set reminders in activities to notify users who didn't upload their requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Nastavenia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Share" +msgstr "Zdieľať" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "Zdieľajte odkazy" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "Zdieľať odkaz" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "Zdieľajte odkazy" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +msgid "Share selected workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "Zdieľajte túto doménu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "Zdieľajte tento výber" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "Typ zdieľania" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "Podiel použitý na vytvorenie tohto dokumentu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Shared" +msgstr "Zdieľané" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "Zdieľané dokumenty" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "Zdieľané tagy" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Show all records which has next action date is before today" +msgstr "Zobraz všetky záznamy, ktorých následná aktivita je pred dnešným dňom" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Veľkosť" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "Rozdeliť" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/attachment_viewer_patch.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Stav" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status založený na aktivitách\n" +"Zmeškané: dátum už vypršal\n" +"Dnes: dátum aktivity je dnes\n" +"Plán: budúce aktivity" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "Čiastkové pracovné priestory" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Zhrnutie" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Tag" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "Tag kategórie" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Názov tagu" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "Značka pre tento aspekt už existuje" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "Kategórie značiek definované pre tento pracovný priestor" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Tagy" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "Šablóny" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "Text" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "Text zobrazený pri umiestnení kurzora myši na túto kategóriu značiek alebo jej značky" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "The model (Odoo Document Kind) to which this alias corresponds. Any incoming email that does not reply to an existing record will cause the creation of a new record of this model (e.g. a Project Task)" +msgstr "Model (Odoo druh dokumentu), ktorému odpovedá tento alias. Každý prichádzajúci email ktorý neodpovie na existujúci záznam, spôsobí vytvorenie nového záznamu tohto modelu (napr požiadavku projektu)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "The name of the email alias, e.g. 'jobs' if you want to catch emails for " +msgstr "Meno emailového alias, napr. \"práce\", ak chcete zachytiť emaily pre " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_user_id +msgid "The owner of records created upon receiving emails on this alias. If this field is not set the system will attempt to find the right owner based on the sender (From) address, or will use the Administrator account if no system user is found for that address." +msgstr "Majiteľ záznamov vytvorených pri prijímaní emailov na tento alias. Ak toto pole nie je nastavené, systém sa pokúsi nájsť správneho vlastníka na základe adresy odosielateľa (Od), alebo bude používať účet správcu, ak nie je užívateľ systému nájdený pre danú adresu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "Tento prístupový token už existuje" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Táto príloha už je dokumentom" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "Táto príloha bude k dispozícii iba pre vybrané skupiny používateľov" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "MIniatúra" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "K overeniu" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Overiť" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Today Activities" +msgstr "Dnešné aktivity" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Toggle Dropdown" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "Pomôcka" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Typ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Typ výnimočnej aktivity v zázname." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.share_page +#: model_terms:ir.ui.view,arch_db:documents.share_single +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Un-archive" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Odomknúť" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Nepomenovaný" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "Upload" +msgstr "Nahrať" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "Nahrať dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +msgid "Upload by Email" +msgstr "Nahrať cez e-mail" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by email" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Užívateľ" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "IČ DPH" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "Platné do" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "Potvrdiť" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "Potvrdené" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "Videá" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Správy webstránok" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "História komunikácie webstránok" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Týždne" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_folder_deletion_wizard_view_form +msgid "What do you want to do with the files in the workspace?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "Akcie pracovného postupu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "Pravidlo pracovného postupu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "Pracovný priestor" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "Pracovný priestor" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Wow... 6 documents processed in a few seconds, You're good.
    The tour is complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "Povolenie zapisovať" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "Zapisovacie skupiny" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "Sem napíšte popis akcie" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "Môžete nahrať súbor z počítača alebo kopírovať/vložiť internetový link k súboru." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Youtube Video" +msgstr "Youtube video" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "zmazať" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "dokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "documents" +msgstr "Dokumenty" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "vybrané dokumenty" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "napr. porediskutovať návrh" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "fa fa-folder text-odoo" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "folder_id" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "name" +msgstr "meno" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "owner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "partner_id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "vybraný" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_page +msgid "shared by" +msgstr "zdieľané používateľom" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %s, message: %s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "nepomenovaný" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "url" +msgstr "url" diff --git a/addons_extensions/documents/i18n/sl.po b/addons_extensions/documents/i18n/sl.po new file mode 100644 index 000000000..8625ffcfc --- /dev/null +++ b/addons_extensions/documents/i18n/sl.po @@ -0,0 +1,3689 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Matjaz Mozetic , 2024 +# Wil Odoo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Wil Odoo, 2024\n" +"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (kopija)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s Datoteke" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%sdatoteke niso premaknjene, ker jih je zaklenil drug uporabnik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Nasvet: Postanite brezpapirno podjetje" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Naloži" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Dokumenti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Povezani
    Zapis
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Zahtevani dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Zahtevan dokument" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Python slovar, po katerem se podaja privzete vrednosti ob ustvarjanju vnosov" +" za ta vzdevek." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Dostop" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Napaka pri dostopu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Žeton vabila" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Dejanje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Potreben je ukrep" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Aktivno" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Aktivnosti" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Aktivnost" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Izjema pri oznaki aktivnosti" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Stanje aktivnosti" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Tip aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ikona vrste dejavnosti" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Tipi aktivnosti" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Tip aktivnosti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Dodaj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Dodaj datoteko" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Dodaj URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Dodajte novo datoteko" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrator" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Vzdevek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Varnostne nastavitve vzdevka stika" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Domenski vzdevek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Naziv vzdevka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Model vzdevka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Vse" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Pri nalaganju se je pojavila napaka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Priponka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Število prilog" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Opis priloge" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Naziv priponke" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Račun" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Brošure" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Prekliči" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Podrejeno" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Kliknite nalločevalnik strani: teh dveh strani ne želimo razdeliti, " +"saj pripadata istemu dokumentu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Za izhod izpredogledakliknite križec" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Zaključi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Barva" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Podjetje" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Uredi nastavitve" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Nastavitve" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Nastavi" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Stik" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Pogodbe" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Ustvari novo aktivnost" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Ustvaril" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Datum nastanka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Custom Bounced Message" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Privzete vrednosti" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Izbriši" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Opuščeno" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Podrobnosti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Opusti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Naziv dokumenta" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumenti" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Opravljeno" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Prenesi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Prenos vseh dokumentov" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Osnutek" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Datum zapadlosti v" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Vrsta zapadlosti" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Podvoji" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Uredi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Urednik" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Email vzdevek" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Email aliasi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Email cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Napaka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Strošek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Veljavnost" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Izvozi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Najljubši od" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Datoteka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Velikost datoteke" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Pomočni model za pretočno pretakanje datotek za krmilnike" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Datoteke" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Finančni" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Davčni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Mapa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Sledilci" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Sledilci (partnerji)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font izjemna ikona npr. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Splošno" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Združi po" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Ima sporočilo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Zgodovina" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Domov" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID nadrejenega zapisa, ki vsebuje vzdevek (primer: projekt z vzdevkom " +"ustvarjanja opravil)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ikona" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ikona za označevanje izjemne aktivnosti." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Če je označeno, zahtevajo nova sporočila vašo pozornost." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Če je označeno, nekatera sporočila vsebujejo napako pri dostavi." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Slike" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Prejeto" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indeksirana vsebina" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Interni uporabniki" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Je mogoče urediti prilogo." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Je priljubljeno" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Je sledilec" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Pravno" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Obdelamo dokumente v mapi Prejeto.
    Nasvet: Za filtriranje dokumentov" +" in strukturiranje postopka uporabite oznake." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Povezava" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "URL povezave" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Zakleni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Zaklenjeno" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Zabeleži opombo..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Prijava" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Odjava" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Sporočilo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Napaka pri dostavi sporočila" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Sporočila" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "MIME tip" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modeli" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Meseci" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Moje aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Moj rok dejavnosti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Moji dokumenti" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Naziv" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Novo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Nova datoteka" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Nova skupina" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Naslednji dogodek v koledarju" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Rok naslednje aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Povzetek naslednje aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Tip naslednje aktivnosti" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Ni bilo najdenih nobenih dejavnosti. Ustvarimo eno!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Noben dokument ni bil izbran" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Brez deljenih povezav" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Brez" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Ni datoteka" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Ni priloženo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Opomba" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Obvestilo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Število aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Število napak" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Število sporočil, ki zahtevajo ukrepanje" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Število sporočil, ki niso bila pravilno dostavljena." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo logotip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo spletna stran" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Starejši" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Opcijski ID niti (zapisa), kamor bodo pripeta prejeta sporočila, čeprav niso" +" bila poslana kot odgovor na nit. Če se nastavi, bo ustvarjanje novih " +"zapisov onemogočeno." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Drugo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Lastnik" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Nadrejeni model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Pot nadrejenega" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID nadrejene niti zapisov" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Predstavitve" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Projekt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Ocene" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Zapis" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID niti zapisov" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Preostale strani" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Preimenuj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Zahteva" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Dejavnost zahtevka" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Zahtevaj dokument" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Zahtevaj datoteko" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Zahtevan dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID vira" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Izvorni model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Naziv vira" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Odgovoren" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Odgovorni uporabnik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Obnovi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Vloga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Napaka pri dostavi SMS " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Prodaja" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Shrani" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Izberite vse" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Pošlji" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Zaporedje" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Nastavitve" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Souporaba" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Bližnjica" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Velikost:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Izvorni dokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Razdeli" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Razdeli PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Označeno" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status na osnovi aktivnosti\n" +"Zapadel: Rok je že prekoračen\n" +"Danes: Datum aktivnosti je danes\n" +"Planirano: Bodoče aktivnosti." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Structure" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Povzetek" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Ključna beseda" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Naziv oznake" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Ključne besede" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Besedilo" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Model (Odoo Document Kind) kateremu pripada vzdevek. Vsa prispela e-pošta, " +"ki se ne nanaša na kateri obstoječi zapis, ustvari nov zapis tega modela " +"(npr. projektno opravilo)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Naziv e-poštnega vzdevka, npr. 'zaposlovanje', če želite loviti e-pošto za " +"" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Ta mesec" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Ta teden" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Ikona" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Za potrditev" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Za potrditev" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Danes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Namig" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tip" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Vrsta dejavnosti izjeme na zapisu. " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Odkleni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Neimenovano" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Naloži" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Prenesitedatoteko alijo povlecitesem." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Uporabnik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "ID DDV/DŠ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Potrjeno" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Videoposnetki" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Gledalec" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "Želite postati brezpapirno podjetje? Poglejmo modul Dokumenti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Sporočila iz spletne strani" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Kronologija komunikacij spletne strani" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Tedni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Datoteko lahko naložite iz svojega računalnika ali pa kopirate/prilepite " +"internetno povezavo do datoteke." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "dokumenti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "npr. Pogovor o predlogu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "npr. Finance" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "npr. Potrditev" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "izberi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "neimenovano" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/sr@latin.po b/addons_extensions/documents/i18n/sr@latin.po new file mode 100644 index 000000000..f0d1eba2f --- /dev/null +++ b/addons_extensions/documents/i18n/sr@latin.po @@ -0,0 +1,3613 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Đorđe Cvijanović , 2022 +# Uros Kalajdzic , 2022 +# Martin Trigaux, 2022 +# Dragan Vukosavljevic , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-06-03 09:02+0000\n" +"PO-Revision-Date: 2022-09-22 05:46+0000\n" +"Last-Translator: Dragan Vukosavljevic , " +"2023\n" +"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid " + Add a tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%(documentCount)s Documents (%(lockedCount)s locked)" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid ", expired on" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2017 +msgid "2023" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_fiscal_year_2018 +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid "" +"
    \n" +" is sharing content with you" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid " Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox " +"Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to " +"upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the " +"missing document before the link expires (planned on 2021-05-17).\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the " +"missing document before the link expires " +"(planned on 2021-05-17).\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" \n" +" This link expires on 2021-05-17.
    \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Python rečnik koji će biti procenjen kako bi se pružila podrazumevana " +"vrednost prilikom kreiranja novih zapisa za ovaj alias." + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_rule +msgid "" +"A set of condition and actions which will be available to all attachments " +"matching the conditions" +msgstr "" +"Grupa uslova i aktivnosti koji će biti dostupni svim prilozima koji " +"zadovoljavaju uslove" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "" +"A workspace cannot have one of his child defined as Parent Workspace in " +"order to avoid a recursion issue." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__parent_folder_id +msgid "A workspace will inherit the tags of its parent workspace" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Pristup" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__group_ids +msgid "Access Groups" +msgstr "Grupe za pristup" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Access Rights" +msgstr "Prava pristupa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__access_token +msgid "Access Token" +msgstr "Token za pristup" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__action +msgid "Action" +msgstr "Radnja" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__action_count +msgid "Action Count" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Action Name" +msgstr "Naziv radnje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction +msgid "Action Needed" +msgstr "Potrebna akcija" + +#. module: documents +#. odoo-javascript +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.ui.menu,name:documents.workflow_rules_menu +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Actions" +msgstr "Radnje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model:ir.model.fields,field_description:documents.field_documents_folder__active +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Active" +msgstr "Aktivno" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Activities" +msgstr "Aktivnosti" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +msgid "Activity" +msgstr "Aktivnost" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Dekoracija izuzeć́a aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_note +msgid "Activity Note" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +#, fuzzy +msgid "Activity Plans" +msgstr "Aktivnost" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Stanje aktivnosti" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Vrsta aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ikonica vrste aktivnosti" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +#, fuzzy +msgid "Activity Types" +msgstr "Vrsta aktivnosti" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace " +"workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_type_id +msgid "Activity type" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__add +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Dodaj" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_workspace_form +#, fuzzy +msgid "Add Workspace" +msgstr "Radni prostor" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administrator" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_ads +msgid "Ads" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_contact +msgid "Alias Contact Security" +msgstr "Bezbednost alias kontakta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain_id +#, fuzzy +msgid "Alias Domain" +msgstr "Domen aliasa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_domain +#, fuzzy +msgid "Alias Domain Name" +msgstr "Domen aliasa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_full_name +#, fuzzy +msgid "Alias Email" +msgstr "Domen aliasa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_name +msgid "Alias Name" +msgstr "Naziv aliasa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_status +msgid "Alias Status" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_status +msgid "Alias status assessed on the last message received." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_model_id +msgid "Aliased Model" +msgstr "Model aliasa" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "All files uploaded" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__allow_upload +#, fuzzy +msgid "Allow upload" +msgstr "Preuzmi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Already linked Documents" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_afv +msgid "Ask for Validation" +msgstr "Zatražite validaciju" + +#. module: documents +#: model:documents.facet,name:documents.documents_marketing_assets +msgid "Assets" +msgstr "Aktivan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Attached To" +msgstr "Priloženo" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Prilog" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +#: model:ir.model.fields,field_description:documents.field_documents_share__message_attachment_count +msgid "Attachment Count" +msgstr "Brojač priloga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Naziv priloga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_finance_folder +msgid "" +"Automate your inbox using scanned documents or emails sent to inbox-financial email " +"alias." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_rule_ids +msgid "Available Rules" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_bill +msgid "Bill" +msgstr "Račun" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand1_folder +msgid "Brand 1" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_brand2_folder +msgid "Brand 2" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_brochures +msgid "Brochures" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Bytes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__can_upload +msgid "Can Upload" +msgstr "Može da učitava" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Can't share documents of different workspaces." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Otkaži" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "" +"Cannot move folder under the given parent as this would create a recursive " +"hierarchy" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "Categorize, share and keep track of all your internal documents." +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_facet +#: model:ir.model.fields,field_description:documents.field_documents_tag__facet_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__facet_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Category" +msgstr "Kategorija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_workflow_rule.py:0 +msgid "Choose a record to link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Zatvori" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__color +msgid "Color" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +#: model:ir.model.fields,field_description:documents.field_documents_folder__company_id +msgid "Company" +msgstr "Kompanija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__condition_type +msgid "Condition type" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Conditions" +msgstr "Uslovi" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +#, fuzzy +msgid "Config Settings" +msgstr "Podešavanje" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Podešavanje" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_share__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Contains" +msgstr "Sadrži" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_Contracts +#: model:documents.tag,name:documents.documents_internal_template_contracts +msgid "Contracts" +msgstr "Ugovori" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_model +msgid "Create" +msgstr "Kreirajte" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_share_id +msgid "Create Share" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mark +msgid "Create Vendor Bill" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_option +msgid "Create a new activity" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Kreirao" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__create_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_share__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__create_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Datum Kreiranja" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__criteria +msgid "Criteria" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Prilagođena odbijena poruka" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__days +msgid "Days" +msgstr "dana" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_defaults +msgid "Default Values" +msgstr "Podrazumevane vrednosti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#, fuzzy +msgid "Default contact" +msgstr "Podrazumevane vrednosti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#, fuzzy +msgid "Default owner" +msgstr "Podrazumevane vrednosti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +msgid "Default values for uploaded documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_tree +msgid "Delete" +msgstr "Obriši" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +#, fuzzy +msgid "Deletion Delay" +msgstr "Obriši" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__deletion_delay +#, fuzzy +msgid "Deletion delay" +msgstr "Obriši" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_deprecate +msgid "Deprecate" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_status_deprecated +msgid "Deprecated" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__description +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Description" +msgstr "Opis" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Poništi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_facet__display_name +#: model:ir.model.fields,field_description:documents.field_documents_folder__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_share__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__display_name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Do you really want to unlink this record?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +#: model_terms:ir.ui.view,arch_db:documents.documents_view_list_main +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Brojač dokumenata" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__owner_id +msgid "Document Owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +#, fuzzy +msgid "Document Plans" +msgstr "Dokumenti" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__has_write_access +msgid "Document User Upload Rights" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_workflow_action +msgid "Document Workflow Tag Action" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__ids +msgid "Document list" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "" + +#. module: documents +#. odoo-javascript +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:documents.facet,name:documents.documents_finance_documents +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.model.fields,field_description:documents.field_documents_folder__document_ids +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.action_view_search +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokumenti" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_share +msgid "Documents Share" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_folder +msgid "Documents Workspace" +msgstr "Dokumenta radni prostor" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +#, fuzzy +msgid "Documents unlink mixin" +msgstr "Brojač dokumenata" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Does not contain" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__domain +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_share__type__domain +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__condition_type__domain +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Domain" +msgstr "Domen" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid "Download" +msgstr "Preuzmi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +#, fuzzy +msgid "Download #{document.name}" +msgstr "Učitaj dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "Download all files" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +#, fuzzy +msgid "Download file" +msgstr "Preuzmi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range +msgid "Due Date In" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_date_deadline_range_type +msgid "Due type" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Duplicate" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Uredi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "Edit the linked record" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_email +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Email Alias" +msgstr "Email Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Email cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Enable to upload documents sent by email in workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Greška" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__excluded_tag_ids +msgid "Excluded Tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.js:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_expense +msgid "Expense" +msgstr "Trošak" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__expired +msgid "Expired" +msgstr "Isteklo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +msgid "Export" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_facet_name_unique +msgid "Facet already exists in this folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Datoteka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Veličina Datoteke" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "File uploaded by:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_finance_folder +msgid "Finance" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_financial +msgid "Financial" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_fiscal +msgid "Fiscal" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_fiscal_year +msgid "Fiscal years" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Fold" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +msgid "Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_follower_ids +msgid "Followers" +msgstr "Pratioci" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_partner_ids +msgid "Followers (Partners)" +msgstr "Pratioci (Partneri)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font awesome ikonica npr. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Gb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +msgid "Group By" +msgstr "Grupiši po" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__read_group_ids +msgid "" +"Groups able to see the workspace and read its documents without create/edit " +"rights." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__group_ids +msgid "Groups able to see the workspace and read/create/edit its documents." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_hr +msgid "HR" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +#: model:ir.model.fields,field_description:documents.field_documents_share__has_message +msgid "Has Message" +msgstr "Ima poruku" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Istorija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_facet__id +#: model:ir.model.fields,field_description:documents.field_documents_folder__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_share__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task " +"creation alias)" +msgstr "" +"ID nadređenog zapisa koji sadrži alias (primer: projekat koji sadrži alias " +"kreiranja zadatka)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ikona" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ikonica koja označava aktivnost izuzetka." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Ako je označeno, nove poruke zahtevaju vašu pažnju." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error +#: model:ir.model.fields,help:documents.field_documents_share__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Ako je označeno, neke poruke imaju grešku u isporuci." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Ako je podešeno, ovaj sadržaj će se automatski slati neautorizovanim " +"korisnicima umesto podrazumevane poruke." + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_images +msgid "Images" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_inbox +#: model:documents.tag,name:documents.documents_internal_status_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Inbox" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__include_sub_folders +msgid "Include Sub Folders" +msgstr "" + +#. module: documents +#: model_terms:documents.folder,description:documents.documents_internal_folder +msgid "" +"Incoming letters sent to inbox " +"email alias will be added to your inbox automatically." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indeksirani sadržaj" + +#. module: documents +#: model:documents.folder,name:documents.documents_internal_folder +msgid "Internal" +msgstr "Interni" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +#: model:ir.model.fields,field_description:documents.field_documents_share__message_is_follower +msgid "Is Follower" +msgstr "Je Pratilac" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__is_shared +msgid "Is Shared" +msgstr "Je podeljeno" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Kb" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_knowledge +msgid "Knowledge" +msgstr "Znanje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_share__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_uid +msgid "Last Updated by" +msgstr "Poslednje izmenio/la" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_facet__write_date +#: model:ir.model.fields,field_description:documents.field_documents_folder__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_share__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__write_date +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__write_date +msgid "Last Updated on" +msgstr "Poslednje ažuriranje dana" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_legal +msgid "Legal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific +msgid "Limit Read Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__user_specific_write +msgid "Limit Write Groups to the documents of which they are owner." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Veza" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Link created by:" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__create_model__link_to_record +msgid "Link to record" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#, fuzzy +msgid "Links" +msgstr "Veza" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Links cannot be shared and therefore will be excluded." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_share__state__live +msgid "Live" +msgstr "Živo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Locked" +msgstr "Zaključano" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Log a note..." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Prijava" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_mad +msgid "Mark As Draft" +msgstr "Označi kao Priprema" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__remove_activities +msgid "Mark all as Done" +msgstr "" + +#. module: documents +#: model:documents.folder,name:documents.documents_marketing_folder +msgid "Marketing" +msgstr "Marketing" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "Mb" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Media" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +#, fuzzy +msgid "Message" +msgstr "Poruke" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error +msgid "Message Delivery error" +msgstr "Greška u isporuci poruke" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__message_ids +msgid "Messages" +msgstr "Poruke" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Mime Tip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Miscellaneous" +msgstr "Ostalo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Meseci" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_mti +msgid "Move To Inbox" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__folder_id +msgid "Move to Workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Moved To Trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector_field.js:0 +msgid "Multiple values" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Rok moje aktivnosti" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Favorites" +msgstr "Moje Omiljeno" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_facet__name +#: model:ir.model.fields,field_description:documents.field_documents_folder__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_share__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Ime" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +msgid "Name of the share link" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New" +msgstr "Novo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Tag" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "New Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Sledeća aktivnost događaj u kalendaru" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Rok za sledeću aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Pregled sledeće aktivnosti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Tip sledeće aktivnosti" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "No limit" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.share_action +msgid "No shared links" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_note +msgid "Note" +msgstr "Beleška" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_needaction_counter +msgid "Number of Actions" +msgstr "Broj akcija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__links_count +#, fuzzy +msgid "Number of Links" +msgstr "Broj akcija" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_error_counter +msgid "Number of errors" +msgstr "Broj grešaka" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_needaction_counter +#, fuzzy +msgid "Number of messages requiring action" +msgstr "Broj poruka koje zahtevaju akciju" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +#: model:ir.model.fields,help:documents.field_documents_share__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Broj poruka sa greškom u isporuci" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo Logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__limited_to_single_record +msgid "One record limit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Open chatter" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Opcioni ID niza (zapisa) kom će biti dodate kao prilog sve dolazne mail " +"poruke, čak i ako na njih nisu odgovorili. Ako je podešeno, ovo ć́e u " +"potpunosti onemogućiti stvaranje novih zapisa." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Ili pošalji email" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_other +msgid "Other" +msgstr "Ostalo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Own Documents Only" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__user_specific_write +msgid "Own Documents Only (Write)" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_folder_check_user_specific +msgid "" +"Own Documents Only may not be enabled for write groups if it is not enabled " +"for read groups." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__criteria_owner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Vlasnik" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_model_id +msgid "Parent Model" +msgstr "Roditeljski Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_path +msgid "Parent Path" +msgstr "Nadređena Putanja" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID niza nadređenog zapisa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__parent_folder_id +#: model_terms:ir.ui.view,arch_db:documents.folder_view_search +msgid "Parent Workspace" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not " +"necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Nadređeni model koji sadrži alias. Model koji sadrži alias referencu nije " +"nužno model koji daje alias_model_id (primer: projekat (parent_model) i " +"zadatak (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Please contact the person that shared this link for more information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following " +"channels\n" +msgstr "" +"Politika za objavljivanje poruka na dokumentima koristeći mail server.\n" +"- svi: svako može da objavljuje\n" +"- partneri: samo odobreni partneri\n" +"- pratioci: samo pratioci povezanog dokumenta ili članovi sledećih kanala\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_presentations +msgid "Presentations" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_project +msgid "Project" +msgstr "Projekat" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__rating_ids +msgid "Ratings" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Read Access" +msgstr "Pristup koji omogućava čitanje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__read_group_ids +msgid "Read Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Receiver will be able to upload documents" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Receiver will not be able to upload documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID niza zapisa" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or " +"'' }}" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__remove +msgid "Remove" +msgstr "Ukloni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Replace" +msgstr "Zameni" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_action__action__replace +msgid "Replace by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__empty +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Zahtev" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#, fuzzy +msgid "Requested Documents" +msgstr "Deljena dokumenta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__required_tag_ids +msgid "Required Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Šifra resursa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Naziv resursa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_user_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_user_id +msgid "Responsible" +msgstr "Odgovorno lice" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Odgovorni korisnik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: code:addons/documents/static/src/views/list/folder_list_controller.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Obnovi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_folder.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +#: model:ir.model.fields,field_description:documents.field_documents_share__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Greška u dostavi SMS-a" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_knowledge_sales +msgid "Sales" +msgstr "Prodaja" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Sačuvaj" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_option +msgid "Schedule Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_internal_legal +msgid "Send to Legal" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__sequence +#: model:ir.model.fields,field_description:documents.field_documents_folder__sequence +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__sequence +msgid "Sequence" +msgstr "Niz" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_2018contracts +#, fuzzy +msgid "Set As 2024 Contracts" +msgstr "Ugovori" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__partner_id +msgid "Set Contact" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__user_id +msgid "Set Owner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__tag_action_ids +msgid "Set Tags" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__has_owner_activity +msgid "Set the activity on the document owner" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Podešavanje" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Share" +msgstr "Podeli" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__share_link_ids +msgid "Share Links" +msgstr "Podeli linkove" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +#, fuzzy +msgid "Share documents" +msgstr "Deljena dokumenta" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Share link" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.share_action +msgid "Share links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Share this domain" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Share this selection" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__type +msgid "Share type" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__create_share_id +msgid "Share used to create this document" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_share.py:0 +#, fuzzy +msgid "Share workspace" +msgstr "Radni prostor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__document_ids +msgid "Shared Documents" +msgstr "Deljena dokumenta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__tag_ids +msgid "Shared Tags" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.share_menu +msgid "Shares & Emails" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Size" +msgstr "Veličina" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +#, fuzzy +msgid "Size:" +msgstr "Veličina" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "Sorry, this link is no longer valid." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__link_model +msgid "Specific Model Linked" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Split" +msgstr "Podeli" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +msgid "Split PDF" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model:documents.facet,name:documents.documents_finance_status +#: model:documents.facet,name:documents.documents_internal_status +#: model:ir.model.fields,field_description:documents.field_documents_share__state +msgid "Status" +msgstr "Status" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status na osnovu aktivnosti\n" +"Isteklo: Datum postavljen kao rok je već prošao\n" +"Danas: Datum aktivnosti je danas\n" +"Planirano: Buduće aktivnosti." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__children_folder_ids +msgid "Sub workspaces" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__activity_summary +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__activity_summary +msgid "Summary" +msgstr "Pregled" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_documents_facet__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__tag_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Oznaka" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__facet_ids +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Tag Categories" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tag Category" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Naziv oznake" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_facet_name_unique +msgid "Tag already exists for this facet" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_folder__facet_ids +msgid "Tag categories defined for this workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model:ir.actions.act_window,name:documents.facet_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +#: model_terms:ir.ui.view,arch_db:documents.facet_view_tree +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Tags" +msgstr "Oznake" + +#. module: documents +#: model:documents.facet,name:documents.documents_internal_template +msgid "Templates" +msgstr "Šabloni" + +#. module: documents +#: model:documents.tag,name:documents.documents_internal_template_text +msgid "Text" +msgstr "Tekst" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_facet__tooltip +msgid "Text shown when hovering on this tag category or its tags" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "The links and requested documents are not shareable." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming " +"email that does not reply to an existing record will cause the creation of a " +"new record of this model (e.g. a Project Task)" +msgstr "" +"Model (poput Odoo dokumenta) kome odgovara ovaj alias. Bilo koja dolazna " +"email adresa koja ne odgovori na postojeći zapis prouzrokovaće stvaranje " +"novog zapisa ovog modela (npr. Projektni zadatak)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_share__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Naziv email aliasa, npr. 'poslovi' ako želite da prikupljate email-ove za " +"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.js:0 +msgid "The share url has been copied to your clipboard. Links were excluded." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_share_share_unique +msgid "This access token already exists" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__group_ids +msgid "This attachment will only be available for the selected user groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This file has been restored" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__company_id +#: model:ir.model.fields,help:documents.field_documents_folder__company_id +msgid "This workspace will only be available to the selected company" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_tc +#: model:documents.tag,name:documents.documents_internal_status_tc +msgid "To Validate" +msgstr "Za potvrditi" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_facet__tooltip +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__note +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "Tooltip" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "Trash" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Vrsta" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Zabeležen tip aktivnosti izuzeća." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +#: model:ir.model.fields,field_description:documents.field_documents_share__full_url +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Unfold" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "Upload" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +msgid "" +"Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "Upload Document" +msgstr "Učitaj dokument" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__email_drop +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload by Email" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "Upload documents sent to this email in workspace" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Korisnik" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_documents_vat +msgid "VAT" +msgstr "PDV" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_share__date_deadline +msgid "Valid Until" +msgstr "" + +#. module: documents +#: model:documents.workflow.rule,name:documents.documents_rule_finance_validate +msgid "Validate" +msgstr "Overi" + +#. module: documents +#: model:documents.tag,name:documents.documents_finance_status_validated +#: model:documents.tag,name:documents.documents_internal_status_validated +msgid "Validated" +msgstr "Potvrđeno" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +#, fuzzy +msgid "Validity date:" +msgstr "Overi" + +#. module: documents +#: model:documents.tag,name:documents.documents_marketing_assets_Videos +msgid "Videos" +msgstr "Video" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,field_description:documents.field_documents_share__website_message_ids +msgid "Website Messages" +msgstr "Website poruke" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +#: model:ir.model.fields,help:documents.field_documents_share__website_message_ids +msgid "Website communication history" +msgstr "Istorija website komunikacije" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_share__activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_workflow_rule__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Nedelje" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.workflow_rule_action +msgid "Workflow Actions" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_workflow_action__workflow_rule_id +msgid "Workflow Rule" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_facet__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_share__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__folder_id +#: model:ir.model.fields,field_description:documents.field_documents_workflow_rule__domain_folder_id +#: model_terms:ir.ui.view,arch_db:documents.facet_view_search +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspace" +msgstr "Radni prostor" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#, fuzzy +msgid "Workspace to share" +msgstr "Radni prostor" + +#. module: documents +#: model:ir.actions.act_window,name:documents.folder_action +#: model:ir.ui.menu,name:documents.folder_menu +#: model_terms:ir.ui.view,arch_db:documents.folder_view_tree +msgid "Workspaces" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "Write Access" +msgstr "Pisanje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_folder__group_ids +msgid "Write Groups" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "Write a tooltip for the action here" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You don't have the right to move documents to that workspace." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that workspace" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "YouTube Video" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#, fuzzy +msgid "alias" +msgstr "Alias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#, fuzzy +msgid "cancel" +msgstr "Otkaži" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "copy link & close" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "delete" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "document" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "documents selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "download" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Discuss proposal" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_view_form +msgid "e.g. Finance" +msgstr "npr. Finansije" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.facet_view_form +msgid "e.g. Status" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.workflow_rule_form_view +msgid "e.g. Validate document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_view_form +#: model_terms:ir.ui.view,arch_db:documents.share_view_form_popup +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "file_extension" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_files_page +msgid "files" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "restore" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/inspector/documents_inspector.xml:0 +msgid "selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +#: model_terms:ir.ui.view,arch_db:documents.share_workspace_page +msgid "shared by" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "" + +#~ msgid "Archive" +#~ msgstr "Arhiva" + +#~ msgid "Archived" +#~ msgstr "Arhivirano" + +#~ msgid "Future Activities" +#~ msgstr "Buduće aktivnosti" + +#~ msgid "Late Activities" +#~ msgstr "Zakasnele aktivnosti" + +#~ msgid "Show all records which has next action date is before today" +#~ msgstr "" +#~ "Prikaži sve zapise koji imaju datum sledeće aktivnosti pre današnjeg " +#~ "datuma" + +#~ msgid "" +#~ "The owner of records created upon receiving emails on this alias. If this " +#~ "field is not set the system will attempt to find the right owner based on " +#~ "the sender (From) address, or will use the Administrator account if no " +#~ "system user is found for that address." +#~ msgstr "" +#~ "Vlasnik zapisa kreiranih primanjem e-maila sa ovim aliasom. Ako ovo polje " +#~ "nije podešeno, sistem će pokušati da pronađe pravog vlasnika na osnovu " +#~ "adrese (Od) pošiljaoca, ili cće koristiti administratorski nalog ako za " +#~ "tu adresu nije pronađen korisnik sistema." + +#~ msgid "Today Activities" +#~ msgstr "Današnje aktivnosti" + +#~ msgid "name" +#~ msgstr "Ime" diff --git a/addons_extensions/documents/i18n/sv.po b/addons_extensions/documents/i18n/sv.po new file mode 100644 index 000000000..c4919dac7 --- /dev/null +++ b/addons_extensions/documents/i18n/sv.po @@ -0,0 +1,3734 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Lisa , 2024 +# Haojun Zou , 2024 +# Björn Hayer, 2024 +# Robin Chatfield , 2024 +# Daniel Osser , 2024 +# Daniel Löfgren, 2024 +# Kristoffer Grundström , 2024 +# Levi Siuzdak (sile), 2024 +# Robin Calvin, 2024 +# Martin Wilderoth , 2024 +# Simon S, 2024 +# Martin Trigaux, 2024 +# Lasse L, 2024 +# Kim Asplund , 2024 +# Anders Wallenquist , 2024 +# Chrille Hedberg , 2024 +# Mikael Åkerberg , 2024 +# Jakob Krabbe , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Jakob Krabbe , 2024\n" +"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (copy)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s filer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" +"%s fil(er) kan inte flyttas eftersom de är låsta av en annan användare" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". De skannade filerna visas automatiskt i arbetsområdet. Behandla sedan dina" +" dokument i stor skala med det delaverktyget: starta användardefinierade " +"åtgärder, begära en underskrift, konvertera till leverantörsfakturor med AI " +"osv." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Tips: Bli ett papperslöst företag" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Avmarkera den här sidan eftersom vi planerar att behandla alla " +"räkningar först." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Drivs av" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Ladda upp" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Relaterad
    Rekord
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Begärt dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Förfrågan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Begärt dokument" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Ett Pythonbibliotek som utvärderar för att tillhandahålla standardvärden när" +" nya poster skapas för detta alias." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Åtkomst" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Åtkomstfel" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Åtkomsttecken" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Åtgärder" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Åtgärd krävs" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Aktiv" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Aktiviteter" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Verksamhet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Aktivitet undantaget dekoration" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Verksamhetsplaner" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Aktivitetsläge" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Aktivitetstyp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Ikon för aktivitetstyp" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Aktivitetstyper" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Aktivitetstyp" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Lägg till" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Lägg till fil" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Lägg till URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Lägg till ny fil" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Administratör" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Annonser" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Alias" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Alias kontaktsäkerhet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Aliasdomän" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Alias-domännamn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Alias e-post" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Aliasnamn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Alias status" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Aliasstatus bedömd utifrån det senast mottagna meddelandet." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Aliasobjekt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Alla" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Ett enkelt sätt att behandla inkommande e-post är att konfigurera skannern " +"så att den skickar PDF-filer till" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Ett enkelt sätt att behandla inkommande e-post är att konfigurera skannern " +"så att den skickar PDF-filer till e-postadressen i arbetsområdet. De " +"skannade filerna visas automatiskt i arbetsområdet. Behandla sedan dina " +"dokument i stor skala med det delade verktyget: starta användardefinierade " +"åtgärder, begära en underskrift, konvertera till leverantörsfakturor med AI " +"osv." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Ett fel uppstod under uppladdningen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Alla som har en länk" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Arkivera originalfil(er)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Eftersom den här PDF-filen innehåller flera dokument kan vi dela upp den och" +" behandla den i stor skala." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Bilaga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Antal bilagor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Beskrivning för bilaga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Namn på bilaga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Bilaga Typ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Faktura" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Blank sida" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Broschyrer" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" +"Genom att definiera en mapp kommer uppladdningsaktiviteterna att generera " +"ett dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Avbryt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Kontrollsumma/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Underordnade" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Välj en post att länka" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Klicka på ett kort för att välja dokumentet." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Klicka på en miniatyrbild för att förhandsgranska dokumentet." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Klicka på sidseparatorn: vi vill inte dela upp de här två sidorna " +"eftersom de hör till samma dokument." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Stäng" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Färg" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Företag" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Inställningar" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Konfiguration" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Ställ in" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontakt" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Kontrakt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Kontrollpanelens knappar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Kopiera länk" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Skapa aktivitet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Skapa en ny aktivitet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Skapad av" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Skapad datum" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Anpassat studsade meddelande" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Dagar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Standardvärden" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Radera" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Föråldrad" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Detaljer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Avbryt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Dokument" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Antal dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Dokumentets namn" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Begäran om dokument" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Begäran om dokument {{ object.name !.= False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Dokument: Dokumentförfrågan" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Dokument" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Dokument Länk till posten" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Mixin för skapande av dokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Klar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Klart!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Nedladdningar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Ladda ner alla filer" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Utkast" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Släpp filer här för att ladda upp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Förfallodatum" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Typ av förfallodag" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Duplicera" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Redigera" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Redaktör" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Alias för e-post" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "E-postalias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "E-post CC" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "E-postdomän, t.ex. \"example.com\" i \"odoo@example.com" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Fel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Kostnader" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Offertens förfallodatum" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Export" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favorit av" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Fil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Filinnehåll (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Filinnehåll (rå)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Filstorlek" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Hjälpmodell för filströmning för styrenheter" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Filer" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Centralisering av filer" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Finansiella tillgångar" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Skattemässig hemvist" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Mapp" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Följare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Följare (kontakter)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font Awesome-ikon t.ex. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Allmänt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Grupp Av" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Har meddelande" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Historia" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Hem" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID på överliggande post med alias (exempel: projekt som har alias för skapa " +"uppgift)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Ikon" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Ikon för att indikera en undantagsaktivitet." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Om markerat, nya meddelanden kräver din uppmärksamhet." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Om markerad, några meddelanden har leveransfel." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Om angivet så kommer detta innehåll att automatiskt skickas ut till " +"obehöriga användare istället för standardmeddelandet." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Bilder" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Inkorg" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Indexerat innehåll" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Interna användare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Är redigerbar bilaga" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Favoriseras" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Är Följare" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad den" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Rättslig" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Låt oss bearbeta dokument i din inkorg.
    Tips: Använd taggar för att " +"filtrera dokument och strukturera processen." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Låt oss behandla dessa räkningar: skicka till arbetsområdet Ekonomi." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Låt oss bearbeta det här dokumentet som kommer från vår skanner." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Låt oss märka det här mailet som juridiskt
    Tips: Åtgärderna kan " +"anpassas till din process, beroende på arbetsområdet." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Link" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "Länk url" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Lokal delbaserad inkommande detektering" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Lås" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Låst" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Låst av" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Registrera en notering..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Inloggning" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Logga ut" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Meddelande" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Meddelande leveransfel" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Meddelanden" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Mime-typ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Modell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modeller" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Månader" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Mina aktivieteter" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Mina aktiviteters deadline" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Mina dokument" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Namn" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Ny" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Ny fil" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Ny prisgrupp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Nästa Kalenderhändelse för aktivitet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Nästa slutdatum för aktivitet" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Nästa aktivitetssammanställning" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Nästa aktivitetstyp" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Inga aktivitetstyper hittades. Låt oss skapa en!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Inget dokument har valts" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Inga delade länkar" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Inga" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Inte en fil" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Inte bifogad" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Anteckning" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Meddela" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Antal åtgärder" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Antal fel" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Antal meddelanden som kräver åtgärd" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Antal meddelanden med leveransfel" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo Logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo-webbplats" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Äldre" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Valfritt ID för en tråd (post) som alla inkommande meddelanden kommer att " +"bifogas till, även om de inte svarade på den. Om inställt så kommer detta " +"att inaktivera skapandet av nya poster helt." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Eller skicka e-post till" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Övriga" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Ägare" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Ägare: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Överordnad mapp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Överordnad modell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Överordnads sökväg" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Överordnad post tråd ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Överordnad modell som innehåller alias. Modellen som innehåller " +"aliasreferensen är inte nödvändigtvis den modell som ges av alias_model_id " +"(exempel: projekt (parent_model) och aktivitet (modell))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Partiell överföring" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Partner" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Stift" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Policy för att publicera ett meddelande på dokumentet med hjälp av mailgateway.\n" +"- alla: alla kan posta\n" +"- partner: endast autentiserade partner\n" +"- följare: endast följare av det relaterade dokumentet eller medlemmar av följande kanaler\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Närvarande" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Presentationer" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Projekt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Betyg" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Senaste" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Post" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Record Thread ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Återstående sidor" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Byt namn på" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Begäran" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Begär aktivitet" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Ärende" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Begär ett dokument" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Begär en fil" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Begärt dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Res Modellnamn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Resurs ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Resursmodell" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Resursnamn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Ansvarig" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Ansvarig användare" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Återställ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Roll" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS leveransfel" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Försäljning" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Spara" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Välj alla" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Skicka" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "" +"Skicka detta brev till den juridiska avdelningen genom att ange de rätta " +"etiketterna." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Skickas till partnern när ett dokument begärs från dem" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Sekvens" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Inställningar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Andel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Genväg" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Storlek:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Källdokument" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Dela" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Dela PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Stjärnmärkt" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Status baserad på aktiviteter\n" +"Försenade: Leveranstidpunkten har passerat\n" +"Idag: Aktivitetsdatum är idag\n" +"Kommande: Framtida aktiviteter." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Stanna här" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Struktur" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Sammanfattning" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Etikett" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Dag Namn" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Etiketter" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Text" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Klassen (Odoo-dokumenttyp) som detta alias är knutet till. All inkommande " +"e-post som inte ingår i en pågående diskussion skapar en ny post av denna " +"klass (t ex Aktivitet)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Namnet på alias för e-post, t.ex. 'kontakt' om du vill samla in e-post för " +"" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Denna månaden" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Den här veckan" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Denna bilaga är redan ett dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Dessa representerar de olika kategorierna av saker du måste göra (t.ex. " +"\"Ringa\" eller \"Skicka e-post\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Miniatyr" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Status för miniatyrbild" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Tips: Konfigurera skannern så att alla dokument skickas till den här " +"adressen." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Tips: Bli ett papperslöst företag" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Att granska" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Att granska" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Idag" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Växla favorit" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Tips" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Sant om vi kan redigera länkbilagan." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Typ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Typ av undantagsaktivitet som har registrerats." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Lås upp" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Namnlös" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Unpin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Ladda upp" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Ladda upp en fil eller dra den hit." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Begäran om uppladdning av fil" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Användare" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "Skattenummer" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Validerad" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Videor" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Åskådare" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Vill ni bli ett papperslöst företag? Låt oss upptäcka Odoo Documents." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Webbplatsmeddelanden" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Webbplatsens kommunikationshistorik" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Veckor" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Du" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Du kan antingen ladda upp en fil från din dator eller ange en URL till din " +"fil." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "alias" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "dokument" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "e.g Diskutera offert" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "t.ex. Ekonomi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "t.ex. Saknad Utgift" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "t.ex. För att validera" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "t.ex. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "t.ex. mittföretag.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "mapp" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "välj" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "delad av" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "namnlös" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/th.po b/addons_extensions/documents/i18n/th.po new file mode 100644 index 000000000..671258675 --- /dev/null +++ b/addons_extensions/documents/i18n/th.po @@ -0,0 +1,3922 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Wil Odoo, 2024 +# Rasareeyar Lappiam, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Rasareeyar Lappiam, 2024\n" +"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (สำเนา)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (หน้าที่เหลือ)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s ไฟล์" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "ไฟล์ %s ไม่ถูกย้ายเนื่องจากถูกล็อคโดยผู้ใช้รายอื่น" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "สร้างเอกสาร %s ใหม่แล้ว" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "ลบหน้า %s แล้ว" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +"ไฟล์ที่สแกนจะแสดงในเวิร์กสเปซของคุณโดยอัตโนมัติ จากนั้น " +"จะประมวลผลเอกสารของคุณเป็นกลุ่มด้วยเครื่องมือแยก: " +"เริ่มการดำเนินการที่ผู้ใช้กำหนด ขอลายเซ็น " +"แปลงเป็นใบเรียกเก็บเงินของผู้ขายด้วย AI และอื่นๆ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr "
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "เคล็ดลับ: เปลี่ยนให้กลายเป็นบริษัทไร้กระดาษ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"ยกเลิกการเลือกหน้านี้ " +"เนื่องจากเราวางแผนจะประมวลผลใบเรียกเก็บเงินทั้งหมดก่อน" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "เลือกหน้านี้เพื่อดำเนินการต่อ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    สนับสนุนโดย" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " ดาวน์โหลดไฟล์" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " ดูตัวอย่างไฟล์" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " ที่อัปโหลด" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "เอกสาร" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "บันทึก
    ที่เกี่ยวข้อง
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "เอกสารที่ส่งคำขอ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;เอกสาร" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " คำขอ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "เอกสารที่ส่งคำขอ" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" คำขอเอกสาร:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" สวัสดี OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) ขอให้คุณจัดเตรียมเอกสารดังต่อไปนี้:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" ตัวอย่างการจดบันทึก\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" กรุณาส่งเอกสารที่ขาดหายให้เราทราบก่อนวันที่ 2021-05-17\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" สนับสนุนโดย Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" คำขอเอกสาร:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" สวัสดี OdooBot,\n" +"

    \n" +" นี่เป็นการแจ้งเตือนให้อัปโหลดเอกสารที่คุณร้องขอ:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" ตัวอย่างการจดบันทึก\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" กรุณาส่งเอกสารที่ขาดหายให้เราทราบก่อนวันที่ 2021-05-17\n" +"

    \n" +" ขอบคุณ\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" สนับสนุนโดย Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"พจนานุกรม Python " +"ที่จะถูกประเมินเพื่อให้เป็นค่าเริ่มต้นเมื่อสร้างการบันทึกใหม่สำหรับนามแฝงนี้" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "เข้าถึง" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "การเข้าถึงผิดพลาด" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "โทเค็นเข้าถึง" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "การดำเนินการ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "จำเป็นต้องดำเนินการ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "เปิดใช้งาน" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "กิจกรรม" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "กิจกรรม" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "การตกแต่งข้อยกเว้นกิจกรรม" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "แผนกิจกรรม" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "สถานะกิจกรรม" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "ประเภทกิจกรรม" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "ไอคอนประเภทกิจกรรม" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "ประเภทกิจกรรม" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"แผนกิจกรรมใช้เพื่อกำหนดรายการกิจกรรมด้วยการคลิกเพียงไม่กี่ครั้ง\n" +" (เช่น \"กระบวนการลงนาม NDA\", \"ขั้นตอนของพื้นที่ทำงาน\", ...)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "ประเภทกิจกรรม" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "เพิ่ม" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "เพิ่มไฟล์" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "เพิ่มแท็กที่ได้รับการตรวจสอบ" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "เพิ่ม URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "เพิ่มไฟล์ใหม่" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "เพิ่มบุคคลหรือที่อยู่อีเมล..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "ผู้ดูแลระบบ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "โฆษณา" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "นามแฝง" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "นามแฝงสำหรับติดต่อเพื่อความปลอดภัย" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "ชื่อโดเมน" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "ชื่อโดเมนนามแฝง" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "อีเมลนามแฝง" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "นามแฝง" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "สถานะนามแฝง" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "ประเมินสถานะนามแฝงตามข้อความล่าสุดที่ได้รับ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "โมเดลนามแฝง" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "ทั้งหมด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"วิธีง่ายๆ ในการประมวลผลอีเมลขาเข้าคือกำหนดค่าเครื่องสแกนของคุณเพื่อส่ง PDF " +"ไป" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"วิธีง่ายๆ ในการประมวลผลอีเมลขาเข้าคือการกำหนดค่าเครื่องสแกนของคุณให้ส่ง PDF " +"ไปยังอีเมลเวิร์กสเปซของคุณ ไฟล์ที่สแกนจะแสดงในเวิร์กสเปซของคุณโดยอัตโนมัติ " +"จากนั้น ประมวลผลเอกสารของคุณเป็นกลุ่มด้วยเครื่องมือแยก: " +"เริ่มการดำเนินการที่ผู้ใช้กำหนด ขอลายเซ็น " +"แปลงเป็นใบเรียกเก็บเงินของผู้ขายด้วย AI และอื่นๆ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "เกิดข้อผิดพลาดขณะอัปโหลด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "ใครก็ตามที่มีลิงก์" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "เก็บถาวรไฟล์ต้นฉบับ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบหน้าโฟกัส?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบหน้าที่เลือก" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบหน้านี้?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบเอกสารอย่างถาวร?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบเอกสารอย่างถาวร?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "เนื่องจาก PDF นี้มีเอกสารหลายชุด เราจึงมาแยกและดำเนินการเป็นกลุ่ม" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "การแนบ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "จำนวนสิ่งที่แนบมา" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "คำอธิบายเอกสารแนบ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "ชื่อที่แนบมาด้วย" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "ประเภทไฟล์แนบ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "บิล" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "หน้าว่าง" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "โบรชัวร์" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "โดยการกำหนดโฟลเดอร์ กิจกรรมการอัปโหลดจะสร้างเอกสาร" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "ตรวจสอบ/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "เด็ก ๆ " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "เลือกเรกคอร์ดที่จะเชื่อมโยง" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "เลือกหรือกำหนดค่าเซิร์ฟเวอร์อีเมล" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "คลิกที่การ์ดเพื่อเลือกเอกสาร" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "คลิกที่ภาพขนาดย่อเพื่อดูตัวอย่างเอกสาร" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"คลิกที่ตัวแยกหน้า: " +"เราไม่ต้องการแยกสองหน้านี้เนื่องจากเป็นของเอกสารเดียวกัน" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "คลิกกากบาทเพื่อออกจากการแสดงตัวอย่าง" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "สร้างลูกค้าแล้ว" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "ปิด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "ปิดเครื่องมือแยก" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "สี" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "บริษัท" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "ตั้งค่าการกำหนดค่า" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "การกำหนดค่า" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "กำหนดค่า" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "ติดต่อ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "สัญญา" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "ปุ่มบนแผงควบคุม" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "คัดลอกลิงก์" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "สร้างกิจกรรม" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "สร้างแผนกิจกรรมเอกสาร" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "สร้างกิจกรรมใหม่" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "สร้างโดย" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "วันที่สร้าง" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "ข้อความตีกลับที่กำหนดเอง" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "วัน" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "ค่าเริ่มต้น" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "ความล่าช้าหลังจากลบเอกสารในถังขยะอย่างถาวร (วัน)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "ลบ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "ลบหน้าที่โฟกัสหรือที่เลือก" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "ลบอย่างถาวร" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "ความล่าช้าในการลบ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "ความล่าช้าในการลบ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "ความล่าช้าในการลบ (วัน)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "เลิกใช้งานแล้ว" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "รายละเอียด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "ละทิ้ง" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "แสดงชื่อ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "คุณต้องการออกโดยไม่บันทึกหรือรวบรวมหน้าเป็นเอกสารเดียวหรือไม่?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "เอกสาร" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "เอกสาร / พาร์ทเนอร์" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "จำนวนเอกสาร" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "ชื่อเอกสาร" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "แผนการจัดทำเอกสาร" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "การเปลี่ยนเส้นทางเอกสาร" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "การขอเอกสาร" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "การขอเอกสาร {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "คำขอเอกสาร: %(name)s อัปโหลดโดย: %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "การขอเอกสาร: คำแจ้งเตือน" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "การแสดงตัวอย่างเอกสาร" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "เอกสาร: การขอเอกสาร" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "เอกสาร" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "เชื่อมโยงเอกสารไปยังบันทึก" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "การผสมผสานการสร้างเอกสาร" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "เอกสารยกเลิกการลิงก์มิกซ์อิน" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "เสร็จสิ้น" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "เสร็จสิ้น!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "ดาวน์โหลด" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "ดาวน์โหลด #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "ดาวน์โหลดไฟล์ทั้งหมด" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "ดาวน์โหลดไฟล์" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "ร่าง" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "วางไฟล์ที่นี่เพื่ออัปโหลด" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "วันครบกำหนดเมื่อ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "ประเภทวันครบกำหนด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "ทำซ้ำ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "แก้ไข" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "ผู้แก้ไข" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "อีเมลนามแฝง" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "อีเมลนามแฝง" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "cc อีเมล" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "โดเมนอีเมล เช่น 'example.com' ใน 'odoo@example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "ผิดพลาด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Escape ดูตัวอย่าง/ยกเลิกการเลือก/ออก" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "ออกจากเครื่องมือแยก" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "ออกโดยไม่บันทึก" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "รายจ่าย" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "สิ้นสุด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "ส่งออก" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "รายการโปรดของ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "ไฟล์" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "เนื้อหาไฟล์ (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "เนื้อหาไฟล์ (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "นามสกุลไฟล์" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "ขนาดไฟล์" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "โมเดลตัวช่วยการสตรีมไฟล์สำหรับคอนโทรลเลอร์" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "ไฟล์" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "การรวมศูนย์ไฟล์" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "ไฟล์จะถูกส่งไปยังถังขยะและถูกลบอย่างถาวรหลังจากนั้น" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "ไฟล์จะถูกส่งไปยังถังขยะและลบอย่างถาวรหลังจาก %s วัน" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "การเงิน" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "การคลัง" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "โฟกัสหน้าแรกของกลุ่มถัดไป" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "โฟกัสหน้าแรกของกลุ่มก่อนหน้า" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "โฟกัสหน้าถัดไป" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "โฟกัสหน้าก่อนหน้า" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "โฟลเดอร์" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "ผู้ติดตาม" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "ผู้ติดตาม (พาร์ทเนอร์)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "ไอคอนแบบฟอนต์ที่ยอดเยี่ยมเช่น fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "รวบรวมไว้ในเอกสารเดียว" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "ทั่วไป" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "กลุ่มโดย" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "มีข้อความ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "ประวัติ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "หน้าแรก" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ไอดี" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ไอดีของบันทึกหลักที่มีนามแฝง (ตัวอย่าง: โปรเจ็กต์ที่มีนามแฝงในการสร้างงาน)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "ไอคอน" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "ไอคอนเพื่อระบุการยกเว้นกิจกรรม" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" +"หาก \"True\" เฉพาะผู้ที่ได้รับสิทธิ์เข้าถึงเอกสารนี้โดยตรงเท่านั้นที่จะดูได้" +" หาก \"False\" " +"การเข้าถึงด้วยลิงก์จะมอบให้กับทุกคนที่สามารถเข้าถึงโฟลเดอร์หลักด้วย" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "ถ้าเลือก ข้อความใหม่จะต้องการความสนใจจากคุณ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "ถ้าเลือก ข้อความบางข้อความมีข้อผิดพลาดในการส่ง" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"หากตั้งค่าไว้ " +"เนื้อหานี้จะถูกส่งไปยังผู้ใช้ที่ไม่ได้รับอนุญาตโดยอัตโนมัติแทนข้อความเริ่มต้น" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "รูปภาพ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "ไม่สามารถเข้าถึงได้" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "กล่องข้อความ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "ดัชนีเนื้อหา" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "ผู้ใช้ภายใน" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "เป็นไฟล์แนบที่แก้ไขได้" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "เป็นรายการโปรด" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "เป็นผู้ติดตาม" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "ถือเป็นหลายหน้า" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"รายการที่คุณต้องการกู้คืนจะรวมอยู่ในโฟลเดอร์ที่เก็บถาวร หากต้องการกู้คืนรายการเหล่านี้ คุณต้องกู้คืนโฟลเดอร์ต่อไปนี้แทน:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "รายการในถังขยะจะถูกลบอย่างถาวรหลังจาก %s วัน" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "รายการที่ย้ายลงถังขยะจะถูกลบอย่างถาวรหลังจาก %s วัน" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "อัปเดตครั้งล่าสุดโดย" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "อัปเดตครั้งล่าสุดเมื่อ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "กฎหมาย" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"มาประมวลผลเอกสารใน Inbox ของคุณกันดีกว่า
    เคล็ดลับ: " +"ใช้แท็กเพื่อกรองเอกสารและจัดโครงสร้างกระบวนการของคุณ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "มาประมวลผลใบเรียกเก็บเงินเหล่านี้: ส่งไปยังเวิร์กสเปซการเงิน" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "มาประมวลผลเอกสารที่มาจากเครื่องสแกนของเรากันดีกว่า" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"มาแท็กเมลนี้ว่าถูกกฎหมายไปด้วยกัน
    เคล็ดลับ: " +"การดำเนินการสามารถปรับให้เข้ากับกระบวนการของคุณได้ " +"โดยขึ้นอยู่กับเวิร์กสเปซ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "ลิงก์" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "ลิงก์ URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "คัดลอกลิงก์ไปยังคลิปบอร์ดแล้ว!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "การตรวจจับขาเข้าตามชิ้นส่วนในพื้นที่" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "ล็อก" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "ล็อก" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "ล็อคโดย" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "บันทึกโน้ต..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "เข้าสู่ระบบ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "ออกระบบ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "ข้อความ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "เกิดข้อผิดพลาดในการส่งข้อความ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "ข้อความ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "ประเภท Mime" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "โมเดล" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "โมเดล" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "เดือน" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "ย้ายหน้านี้ไปที่ถังขยะ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "ย้ายไปที่ถังขยะ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "ย้ายไปที่ถังขยะ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "ย้ายไปที่ถังขยะ?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "ย้ายไปถังขยะแล้ว" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "กิจกรรมของฉัน" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "วันครบกำหนดกิจกรรมของฉัน" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "เอกสารของฉัน" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "ชื่อ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "ชื่อ/นามสกุล" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "ใหม่" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "ไฟล์ใหม่" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "กลุ่มใหม่" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "ปฏิทินอีเวนต์กิจกรรมถัดไป" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "วันครบกำหนดกิจกรรมถัดไป" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "สรุปกิจกรรมถัดไป" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "ประเภทกิจกรรมถัดไป" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "ไม่พบประเภทกิจกรรม มาสร้างกันเถอะ!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "ไม่มีการกำหนดค่านามแฝง" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "ยังไม่ได้เลือกเอกสาร" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "ไม่มีลิงก์ที่แชร์" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "ไม่มี" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "ไม่ใช่ไฟล์" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "ไม่ได้แนบ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "โน้ต" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "แจ้งเตือน" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "จํานวนการดําเนินการ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "จํานวนข้อผิดพลาด" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "จำนวนข้อความที่ต้องดำเนินการ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "จํานวนข้อความที่มีข้อผิดพลาดในการส่ง" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "โลโก้ Odoo " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "เว็บไซต์ Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "เก่ากว่า" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"ไอดีทางเลือกของเธรด (บันทึก) ที่จะแนบข้อความขาเข้าทั้งหมด " +"แม้ว่าพวกเขาจะไม่ตอบกลับก็ตาม หากตั้งค่าไว้ " +"การดำเนินการนี้จะปิดใช้งานการสร้างการบันทึกใหม่ทั้งหมด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "หรือส่งอีเมลมาที่" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "อื่นๆ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "เจ้าของ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "เจ้าของ: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "โฟลเดอร์หลัก" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "โมเดลหลัก" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "เส้นทางหลัก" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ไอดีเธรดการบันทึกหลัก" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"โมเดลหลักที่ถือนามแฝง " +"โมเดลที่มีการอ้างอิงนามแฝงไม่จำเป็นต้องเป็นโมเดลที่กำหนดโดย alias_model_id " +"(ตัวอย่าง: project (parent_model) and task (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "การโอนบางส่วน" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "พาร์ทเนอร์" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "ปักหมุด" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"นโยบายการโพสต์ข้อความบนเอกสารโดยใช้เมลล์เกตเวย์\n" +"- ทุกคน: ทุกคนโพสต์ได้\n" +"- พาร์ทเนอร์: เฉพาะพาร์ทเนอร์ที่ได้รับการรับรองเท่านั้น\n" +"- ผู้ติดตาม: เฉพาะผู้ติดตามเอกสารที่เกี่ยวข้องหรือสมาชิกของช่องดังต่อไปนี้\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "การมา" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "งานนำเสนอ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "ดูตัวอย่างไฟล์" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "โปรเจ็กต์" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "การให้คะแนน" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "ล่าสุด" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "บันทึก" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "บันทึกเธรด ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "หน้าที่เหลืออยู่" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "ส่งอีเมลแจ้งเตือนแล้ว" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"คำเตือนให้อัปโหลดเอกสารของคุณ {{ object.name and ' : ' + object.name or '' " +"}}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "ลบสมาชิก" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "ลบแท็กเพื่อตรวจสอบ" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "ตั้งชื่อใหม่" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "คำขอ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "คำขอกิจกรรม" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "ส่งคำขอไปที่" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "การขอเอกสาร" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "ขอไฟล์" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"คำขอ\n" +" " + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "เอกสารที่ส่งคำขอ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "เอกสารที่ร้องขอ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "ชื่อโมเดล Res" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ไอดีทรัพยากร" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "โมเดลทรัพยากร" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "ชื่อทรัพยากร" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "รับผิดชอบ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "ผู้ใช้ที่รับผิดชอบ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "คืนค่า" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "ถูกจำกัด" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "โฟลเดอร์ที่ถูกจำกัด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "บทบาท" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "ข้อผิดพลาดในการส่ง SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "การขาย" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "บันทึก" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "เลือกทั้งหมด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "เลือกหน้าที่โฟกัส" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "เลือกหน้าถัดไป" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "เลือกหน้าถัดไปของกลุ่ม" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "เลือกหน้าก่อนหน้า" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "เลือกหน้าของกลุ่มก่อนหน้า" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "เลือก/ยกเลิก การเลือกทุกหน้า" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "ส่ง" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "ส่งจดหมายนี้ไปยังฝ่ายกฎหมายโดยกำหนดแท็กที่ถูกต้อง" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "ส่งไปยังพาร์ทเนอร์เมื่อขอเอกสารจากพวกเขา" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "ลำดับ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "ตั้งค่าความล่าช้าในการลบเอกสารในถังขยะ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"ตั้งค่าการแจ้งเตือนในกิจกรรมเพื่อแจ้งเตือนผู้ใช้ที่ไม่ได้อัปโหลดเอกสารที่ร้องขอ" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "การตั้งค่า" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "แชร์" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "ทางลัด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "ขนาด:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "ไม่สามารถอัปโหลดไฟล์บางไฟล์ได้ (ขนาดสูงสุด: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "เอกสารอ้างอิง" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "แยก" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "แยก PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "แยกหน้าขาวทั้งหมด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "แยกหน้าที่เลือก" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "ติดดาว" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"สถานะตามกิจกรรม\n" +"เกินกำหนด: วันที่ครบกำหนดผ่านไปแล้ว\n" +"วันนี้: วันที่จัดกิจกรรมคือวันนี้\n" +"วางแผน: กิจกรรมในอนาคต" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "อยู่ที่นี่" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "โครงสร้าง" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "สรุป" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "แท็ก" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "ชื่อแท็ก" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "แท็ก" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "ข้อความ" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "ความล่าช้าในการลบควรเป็นบวก" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"โมเดล (ชนิดเอกสาร Odoo) ซึ่งสอดคล้องกับนามแฝงนี้ " +"อีเมลขาเข้าที่ไม่ตอบกลับบันทึกที่มีอยู่จะทำให้เกิดการสร้างบันทึกใหม่ของโมเดลนี้" +" (เช่น โปรเจ็กต์งาน)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"ชื่อของนามแฝงอีเมล เช่น 'งาน' หากคุณต้องการรับอีเมลสำหรับ " +"" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "เดือนนี้" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "สัปดาห์นี้" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "เอกสารแนบนี้เป็นเอกสารอยู่แล้ว" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"เอกสารนี้ได้รับการร้องขอแล้ว\n" +" อัปโหลดเลย" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "ไฟล์นี้ถูกส่งไปยังถังขยะแล้ว และจะถูกลบถาวรใน %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"สิ่งเหล่านี้แสดงถึงหมวดหมู่ต่างๆ ของสิ่งที่คุณต้องทำ (เช่น \"โทร\" หรือ " +"\"ส่งอีเมล\")" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "ภาพขนาดย่อ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "สถานะภาพขนาดย่อ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "เคล็ดลับ: กำหนดค่าเครื่องสแกนของคุณให้ส่งเอกสารทั้งหมดไปยังที่อยู่นี้" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "เคล็ดลับ:  เปลี่ยนเป็นบริษัทไร้กระดาษ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "เพื่อตรวจสอบ" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "เพื่อตรวจสอบ" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "วันนี้" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "สลับรายการโปรด" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "ทูลทิป" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "ถังขยะ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "True หากเราสามารถแก้ไขไฟล์แนบลิงค์ได้" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "ประเภท" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "ประเภทกิจกรรมข้อยกเว้นบนบันทึก" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"ดูเหมือนว่า URL %s จะไม่สมบูรณ์ เนื่องจากไม่ได้ขึ้นต้นด้วย http(s):// หรือ " +"ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "รูปภาพตัวอย่าง URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "ปลดล็อก" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "ไม่มีชื่อ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "ยกเลิกการปักหมุด" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "อัปโหลด" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"อัปโหลด ไฟล์ หรือ ลาก มาที่นี่" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "อัปโหลดไฟล์ที่ถูกขอ" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "ผู้ใช้" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "การอนุญาตของผู้ใช้" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "ภาษีมูลค่าเพิ่ม (VAT)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "ตรวจสอบแล้ว" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "วิดีโอ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "ผู้ดู" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"ต้องการที่จะ เป็นบริษัทไร้กระดาษ หรือไม่? มาร่วมค้นพบ เอกสาร Odoo กัน" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "ข้อความเว็บไซต์" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "ประวัติการสื่อสารของเว็บไซต์" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "สัปดาห์" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "คุณต้องการทำอะไรกับหน้าที่เหลืออยู่?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"ว้าว... ประมวลผลเอกสาร 6 รายการในไม่กี่วินาที เยี่ยมเลย
    " +"ทัวร์เสร็จสิ้นแล้ว ลองอัปโหลดเอกสารของคุณเองตอนนี้" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "คุณ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"คุณสามารถอัปโหลดไฟล์จากคอมพิวเตอร์ของคุณ " +"หรือคัดลอก/วางอินเตอร์เน็ตลิงก์ไปยังไฟล์ของคุณ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "คุณต้องอยู่ในพื้นที่ทำงานที่เขียนได้โดยเฉพาะจึงจะอัปโหลดไฟล์ได้" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "นามแฝง" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "วัน" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "เอกสาร" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "เอกสาร" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "เช่น พูดคุยเกี่ยวกับข้อเสนอ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "เช่น การเงิน" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "เช่น ค่าใช้จ่ายที่หายไป" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "เช่น เพื่อตรวจสอบ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "เช่น https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "เช่น mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "ไฟล์" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "โฟลเดอร์" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "เลือก" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "แชร์โดย" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "รหัสสถานะ: %(status)s ข้อความ: %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "ไม่มีชื่อ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/tr.po b/addons_extensions/documents/i18n/tr.po new file mode 100644 index 000000000..5f4b9b41f --- /dev/null +++ b/addons_extensions/documents/i18n/tr.po @@ -0,0 +1,3737 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# İmat Yahya Çataklı , 2024 +# abc Def , 2024 +# Nadir Gazioglu , 2024 +# emre oktem, 2024 +# gezgin biri , 2024 +# Tiffany Chang, 2024 +# Keremsah Sarialtin , 2024 +# Gökhan Yüksel , 2024 +# Buket Şeker , 2024 +# Cihad GÜNDOĞDU , 2024 +# Ahmet Altinisik , 2024 +# Melih Melik Sonmez, 2024 +# Levent Karakaş , 2024 +# Özlem Atalay , 2024 +# Halil, 2024 +# İlknur Gözütok, 2024 +# Emre Akayoğlu , 2024 +# Tugay Hatıl , 2024 +# Gökhan Erdoğdu , 2024 +# Cengiz Cokay Global Nonwoven, 2024 +# Ediz Duman , 2024 +# Murat Kaplan , 2024 +# Martin Trigaux, 2024 +# Ozlem Cikrikci , 2024 +# Mehmet YAYLA, 2024 +# Ertuğrul Güreş , 2024 +# Umur Akın , 2024 +# Murat Durmuş , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Murat Durmuş , 2024\n" +"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (kopya)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s Dosyalar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" +"%s dosya(lar) başka bir kullanıcı tarafından kilitlendiği için taşınmadı" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s sayfa(lar) silindi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Taranan dosyalar çalışma alanınızda otomatik olarak görünür. Ardından, " +"belgelerinizi bölme aracıyla toplu olarak işleyin: kullanıcı tanımlı " +"eylemleri başlatın, imza isteyin, AI ile satıcı faturalarına dönüştürün, vb." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "İpucu: Kağıtsız bir şirket olun" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Önce tüm faturaları işlemeyi planladığımız için bu sayfanın seçimini " +"kaldırın." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Tarafindan Hazırlayan" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr "Yükle" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Belgeler" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "İlgili
    Kayıt
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Talep Edilen Belge" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Talep" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "İstenilen Belge" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Bir Python sözlüğü, bu rumuz için yeni kayıtlar oluştururken varsayılan " +"değerleri sağlamak için değerlendirilir." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Erişim" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Erişim Hatası" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Erişim Anahtarı" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Aksiyon" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Aksiyon Gerekiyor" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Etkin" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Aktiviteler" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Aktivite" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Etkinlik İstisna Dekorasyonu" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Aktivite Planları" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Aktivite Durumu" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Aktivite Türü" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Aktivite Türü İmgesi" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Aktivite Türleri" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Aktivite Türü" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Ekle" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Dosya Ekle" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Url Ekle" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Yeni dosya ekle" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Yönetici" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Reklamlar" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Rumuz" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Rumuz Kontak Güvenliği" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Alias Domain" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Takma Alan Adı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Rumuz E-Posta" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Rumuz Adı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Takma Ad Durumu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Alınan son mesajda değerlendirilen takma ad durumu." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Rumuzlanan Model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Tümü" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Gelen postaları işlemenin kolay bir yolu, tarayıcınızı PDF'leri gönderecek " +"şekilde yapılandırmaktır" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Gelen postaları işlemenin kolay bir yolu, tarayıcınızı çalışma alanı " +"e-postanıza PDF gönderecek şekilde yapılandırmaktır. Taranan dosyalar " +"çalışma alanınızda otomatik olarak görünür. Ardından, belgelerinizi bölme " +"aracıyla toplu olarak işleyin: kullanıcı tanımlı eylemleri başlatın, imza " +"isteyin, AI ile satıcı faturalarına dönüştürün, vb." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Yükleme sırasında bir hata oluştu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Bağlantıya sahip olan herkes" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Orijinal dosyayı(ları) arşivleyin" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Odaklanılan sayfayı silmek istediğinizden emin misiniz?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Seçilen sayfa(lar)yı silmek istediğinizden emin misiniz?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Bu sayfayı silmek istediğinizden emin misiniz?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Bu PDF birden fazla belge içerdiğinden, toplu olarak bölelim ve işleyelim." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Ek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Ek Sayısı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Ek Açıklaması" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Ek Adı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Ek Türü" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Fatura" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Broşürler" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "Bir klasör tanımlayarak, yükleme etkinlikleri bir belge oluşturur" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "İptal" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Alt" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Bağlanacak kaydı seçin" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Email Sunucularını Seç ya da Konfigüre Et" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Belgeyi seçmek için bir karta tıklayın." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Belgeyi önizlemek için küçük resme tıklayın." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Sayfa ayırıcıya tıklayın: Bu iki sayfayı aynı belgeye ait oldukları " +"için bölmek istemiyoruz." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Kapat" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Renk" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Firma" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Yapılandırma Ayarları" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Ayarlar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Yapılandır" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Kontak" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Sözleşmeler" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Kontrol paneli düğmeleri" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Bağlantıyı kopyala" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Yeni bir aktivite oluştur" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Tarafından oluşturuldu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Oluşturulma Tarihi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Özel İletilmeyen Mesajı" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Gün" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Öntanımlı Değerler" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "" +"Çöp kutusundaki belgenin kalıcı olarak silinmesinden sonraki gecikme (gün)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Sil" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Odaklanılmış veya seçilmiş sayfayı sil" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Kalıcı Olarak Sil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Gecikmiş Silme" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "gecikmiş silme" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Gecikmiş Silme ( Gün )" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Süresi Dolmuş" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Detaylar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Sil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "İsim Göster" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" +"Kaydetmeden çıkmak veya sayfaları tek bir belgede toplamak mı istiyorsunuz?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Belge" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Belge Sayısı" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Belge Adı" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Döküman Planları" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Belge İsteği" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "Belge İsteği {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Belge Talebi: Hatırlatma" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Belge önizleme" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Döküman: Döküman İsteği" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Belgeler" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Kayıtlara Bağlanan Belgeler" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Belge oluşturma karması" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Yapıldı" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Done!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "İndir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "İndir #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Tüm dosyaları indir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Dosyayı İndir" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Taslak" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Yüklemek için dosyayı buraya bırakın" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Son Tarih" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Beklenen Türü" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Kopyala" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Düzenle" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Editör" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "E-Posta Rumuzu" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "E-posta Rumuzları" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "E-posta cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "" +"E-posta alan adı, örneğin 'odoo@example.com' adresindeki 'example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Hata" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Kaçış Önizleme/Seçimi Kaldır/Çıkış" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Bölme Araçlarından Çık" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Kaydetmeden Çık" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Masraf" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Geçerlilik Tarihi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Dışa Aktar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Favoriler" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Dosya" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Dosya İçeriği (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Dosya İçeriği (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Dosya Uzantısı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Dosya Boyutu" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Denetleyiciler için dosya akışı yardımcı modeli" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Dosyalar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Dosyaları Merkezileştirme" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "" +"Dosyalar çöp kutusuna gönderilecek ve sonrasında kalıcı olarak silinecektir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "" +"Dosya çöp kutusuna gönderilecek ve %s gün sonra kalıcı olarak silinecektir. " + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Finansal" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Mali" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Bir sonraki grubun ilk sayfasına odaklanın" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Bir önceki grubun ilk sayfasına odaklanın" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Bir sonraki sayfaya odaklanın" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Bir önceki sayfaya odaklanın" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Dosya" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Takipçiler" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Takipçiler (İş ortakları)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Yazı tipi harika simgesi ör. fa-görevler" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Bir dökümanda topla" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Genel" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Grupla" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "İK" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Mesaj Var" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Geçmiş" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Ana Sayfa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"Rumuzu tutan üst kayıt ID (örnek: görev oluşturma rumuzunu tutan proje)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Simge" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "İstisnai bir etkinliği belirtmek için kullanılan simge." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "İşaretliyse, yeni mesajlar dikkatinize sunulacak." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "İşaretliyse, bazı mesajlar gönderi hatası içermektedir." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Eğer belirlenirse, standart mesaj yerine yetkili olmayan kullanıcılara bu " +"içerik gönderilecektir." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Görseller" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Gelen Kutusu" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "İndekslenen İçerik" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "İç Kullanıcı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Düzenlenebilir Ek'tir" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Favoriler" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Takipçi mi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Son Güncelleyen" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Son Güncelleme" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Yasal" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Gelen Kutunuzdaki belgeleri işleyelim.
    İpucu: Belgeleri filtrelemek " +"ve işleminizi yapılandırmak için Etiketler'i kullanın." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Bu faturaları işleyelim: Finans çalışma alanına gönderin." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Tarayıcımızdan gelen bu belgeyi işleyelim." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Bu postayı yasal olarak etiketleyelim
    İpuçları: Eylemler, çalışma " +"alanına göre sürecinize göre uyarlanabilir." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Bağlantı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "Bağlantı URL'si" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Bağlantı panoya kopyalandı!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Kilitle" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Kilitli" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Tarafından kilitlendi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Not oluştur..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Oturum aç" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Çıkış" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Mesaj" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Mesaj Teslim hatası" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Mesajlar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Mime Türü" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Modeller" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Aylar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Çöp Kutusuna Taşındı" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Aktivitelerim" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Aktivite Son Tarihim" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Belgelerim" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Adı" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Yeni" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Yeni Dosya" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Yeni Grup" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Sonraki Aktivite Takvimi Etkinliği" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Sonraki Aktivite Son Tarihi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Sonraki Aktivite Özeti" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Sonraki Aktivitie Türü" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Etkinlik türü bulunamadı. Hadi bir tane oluşturalım!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Hiçbir belge seçilmedi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Paylaşılan bağlantı yok" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Hiçbiri" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Dosya değil" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Ekli değil" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Not" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Bildirim" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Aksiyon Sayısı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Hata adedi" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "İşlem gerektiren mesaj sayısı" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Teslimat hatası olan mesaj adedi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo Logo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo Website" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Daha Eski" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Yanıt vermemiş olsalar bile, gelen tüm mesajların ekleneceği bir ileti " +"dizisinin (kayıt) isteğe bağlı kimliği. Ayarlanırsa, bu, yeni kayıtların " +"oluşturulmasını tamamen devre dışı bırakacaktır." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Veya e-posta gönderin" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Diğer" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Sahibi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Üst Dosya" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Üst Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Üst Yol" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "Üst kayıt iş parçacığı kimliği" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Rumuzun bulunduğu üst model. Rumuz referansın bulunduğu model zorunlu olarak" +" alias_model_id tarafından verilen model değildir. (örnek: project " +"(parent_model) ve görev (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "İş Ortağı" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Posta geçidini kullanarak gönderilecek mesajların kuralları:\n" +"- herkes: herkes posta gönderebilir\n" +"- iş ortakları: sadece onaylanmış iş ortakları\n" +"- takipçiler: sadece ilgili dokümanın veya takipçi kanalların takipçileri\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Mevcut" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Sunumlar" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Proje" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Değerlendirmeler" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Son" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Kayıt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Kayıt Başlık ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Kalan Sayfalar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Adını değiştir" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "İstek" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Aktivite Talep Et" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "İstek" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Bir Belge İste" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Bir Dosya İste" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "İstenilen Dosya" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "İstenen Belgeler" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Res Model Adı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "Kaynak ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Kaynak Model" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Kaynak Adı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Sorumlu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Sorumlu Kullanıcı" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Geriyükle" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Rol" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "SMS İleti hatası" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Satış" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Kaydet" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Hepsini Seç" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Gönder" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "Bu mektubu doğru etiketleri atayarak hukuk departmanına gönderin." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Sıralama" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Ayarlar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Paylaş" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Kısayol" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Boy:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Kaynak Belge" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Böl" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "PDF'yi bölme" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Yıldızlı" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Aktivitelere göre durum \n" +"Gecikmiş\\: Son tarih geçmiş\n" +"Bugün\\: Aktivite tarihi bugün\n" +"Planlanmış\\: Gelecek Aktiviteler." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Burada Kal" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Yapı" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Özet" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Etiket" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Etiket Adı" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Etiketler" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Metin" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Bu rumuzun karşılık geldiği model (Odoo Belge Türü). Mevcut bir kayda yanıt " +"vermeyen herhangi bir gelen e-posta, bu modelin yeni bir kaydının " +"oluşturulmasına neden olacaktır (örneğin, bir Proje Görevi)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Eposta rumuzunun adı, ör. adresine gelen " +"epostaları yakalamak için 'kariyer'" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Bu Ay" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Bu Hafta" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Bu ek zaten bir belge" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Bunlar, yapmanız gereken farklı kategorileri temsil eder (ör. \"Ara\" veya " +"\"E-posta gönder\")." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Küçük Resim" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"İpucu: Tarayıcınızı tüm belgeleri bu adrese gönderecek şekilde yapılandırın." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "İpucu: Kağıtsız bir şirket olun" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Onaylanacak" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Onaylanacak" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Bugün" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Favorileri değiştir" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Bilgi Çubuğu" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Bağlantı ekini düzenleyebilirsek doğrudur." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Tip" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Kayıtlardaki istisna etkinliğinin türü." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Kilidi Aç" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Adsız" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Yükle" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Dosya yükleme isteği" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Kullanıcı" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "VKN/TCKN" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Doğrulanmış" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Videolar" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Görüntüleyici" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Kağıtsız bir şirket olmak ister misiniz? Odoo Belgelerini keşfedelim." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Websitesi Mesajları" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Websitesi iletişim geçmişi" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Hafta" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "Kalan sayfalarla ne yapmak istiyorsunuz?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Siz" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Bilgisayarınızdan bir dosya yükleyebilir ya da dosyanıza internet " +"bağlantınızı kopyalayıp yapıştırabilirsiniz." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "günler." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "belge" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "belgeler" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "örn. Teklifi tartışın" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "örn. Finans" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "örn. Eksik Gider" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "örn. Doğrulamak için" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "örneğin https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "dosyalar" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "klasör" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "seç" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "tarafından paylaşıldı" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "adsız" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/uk.po b/addons_extensions/documents/i18n/uk.po new file mode 100644 index 000000000..7932adb37 --- /dev/null +++ b/addons_extensions/documents/i18n/uk.po @@ -0,0 +1,3727 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Alina Lisnenko , 2024 +# Wil Odoo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Wil Odoo, 2024\n" +"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (копія)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (решта сторінок)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s Файли" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "" +"%s файл(и) не переміщено через те, що вони заблоковані іншим користувачем" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s створено нові документи" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s сторінки видалено" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Відскановані файли автоматично з’являться у вашому робочому просторі. " +"Потім масово обробляйте свої документи за допомогою інструмента розділення: " +"запускайте дії, визначені користувачем, запитуйте підпис, конвертуйте в " +"рахунки постачальника за допомогою штучного інтелекту тощо." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Порада: Станьте безпаперовою компанією" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "" +"Скасуйте вибір цієї сторінки оскільки ми плануємо спочатку обробити " +"всі рахунки." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Оберіть цю сторінку, щоби продовжити." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Зроблено" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " Завантажити" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Документи" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Пов'язаний
    Запис
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Запитаний документ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "Документи." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Запит" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Запитуваний документ" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Словник Python який буде використано для вказання типових значень при " +"створенні нових записів для цього псевдоніму." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Доступ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Помилка доступу" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Токен доступу" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Дія" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Необхідна дія" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Активно" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Дії" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Дія" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Оформлення виключення дії" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Плани дій" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Статус дії" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Тип дії" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Іконка типу дії" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Типи дії" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Тип дії" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Додати" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Додати файл" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Додати Url" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Додати новий файл" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Додайте людей чи email адреси..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Адміністратор" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Оголошення" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Псевдонім" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Безпека псевдоніма контакту" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Домен псевдоніма" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Назва домену псевдоніму" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Псевдонім електронної пошти" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Назва псевдоніма" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Статус псевдоніма" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Статус псевдоніма оцінюється за останнім отриманим повідомленням." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Модель псевдоніма" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Всі" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Простий спосіб обробки вхідних листів – налаштувати сканер на надсилання " +"PDF-файлів" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Простий спосіб для обробки вхідних листів - це налаштувати ваш сканер для " +"відправлення PDF у вашу пошту папки. Відскановані документи будуть " +"з'являтися автоматично у вашій папці. Потім обробіть ваші документи групою " +"через інструмент розбиття: запустіть визначені користувачем дії, надішліть " +"запит на підпис, конвертуйте рахунки постачальників за допомогою штучного " +"інтелекту тощо." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Під час завантаження виникла помилка." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Будь-хто з посиланням" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Архівувати оригінальний файл(и)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Ви впевнені, що хочете видалити вибрану сторінку?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Ви впевнені, що хочете видалити вибрані сторінки" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Ви впевнені, що хочете видалити цю сторінку?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "Ви впевнені, що бажаєте остаточно стерти документ?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "Ви впевнені, що бажаєте остаточно стерти документи?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "" +"Оскільки цей PDF містить кілька документів, давайте розділимо їх і обробимо " +"групою." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Прикріплення" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Підрахунок прикріплення" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Прикріплений опис" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Назва додатку" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Тип прикріплення" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Рахунок" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Сторінка замовлення" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Брошури" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "Визначивши папку, завантаження буде генерувати документ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Скасувати" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Дочірній" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Оберіть дію для створення посилання" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Оберіть або налаштуйте поштові сервери" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Натисніть на картку, щоб обрати документ." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Клікніть на мініатюру, щоби переглянути попередньо документ." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Натисніть на роздільник сторінок: ми не хочемо розділяти ці дві " +"сторінки, оскільки вони належать до одного документу." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Натисніть на хрестик, щоби закрити превʼю." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Закрити" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Закрити розділені інструменти" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Колір" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Компанія" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Налаштування" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Налаштування" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Налаштувати" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Контакт" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Контракти" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Кнопки панелі приладів" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Скопіюйте посилання" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Створіть дію" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Створити нову дію" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Створив" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Створено" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Дата створення" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Кастомне спливаюче повідомлення" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Дні" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Типові значення" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "Затримка після остаточного видалення документа в кошику (у днях)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Видалити" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Видалити виділені сторінки" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Видалити назавжди" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Затримка видалення" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Затримка видалення" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Затримка видалення (в днях)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Не використовується" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Деталі" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Відмінити" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "Бажаєте вийти без збереження або зібрати сторінки в один документ?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Документ" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Підрахунок документів" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Назва документу" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Плани документів" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Запит на документ" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Запит на документ {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Запит на документ: Нагадування" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Перегляд документу" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Документ: Запит на документ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Документи" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Документи пов'язані із записом" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Суміш створення документів" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Виконано" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Готово!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Завантажити" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "Завантажити #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Завантажити усі файли" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Завантажити файл" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Чернетка" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Скиньте файли для завантаження" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Дата виконання в" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Тип виконання" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Дублювати" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Редагувати" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Редактор" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Псевдонім ел. пошти" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Псевдоніми ел. пошти" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Email cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Домен пошти, напр., 'example.com' в 'odoo@example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Помилка" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Escape Попередній перегляд/Зняття виділення/Вихід" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Вийти з розділених інструментів" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Вийти без збереження" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Витрати" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Термін дії" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Експорт" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Найкращий з" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Файл" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Вміст файлу (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Вміст файлу (рядок)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Розширення файлу" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Розмір файлу" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Помічна модель потокового передавання файлів для контролерів" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Файли" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Централізація файлів" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "Файли буде відправлено в смітник і видалено назавжди після" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "Файли буде відправлено в смітник і видалено назавжди через %s днів." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Фінансовий" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Фіскальний" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Перейти до першої сторінки наступної групи" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Перейти до першої сторінки попередньої групи" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Перейти на наступну сторінку" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Перейти на попередню сторінку" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Папка" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Підписники" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Підписники (Партнери)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Іконка з чудовим шрифтом, напр. fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Зібрати в одному документі" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Загальне" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Групувати за" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Є повідомлення" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Історія" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Головна" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID батьківського запису, що містить псевдонім (наприклад: проєкт, що містить" +" завдання створити псевдонім)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Значок" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Іконка для визначення виключення дії." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Якщо позначено, то нові повідомлення будуть потребувати вашої уваги." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Якщо позначено, деякі повідомлення мають помилку доставки." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Якщо встановлено, цей вміст буде автоматично надіслано неавторизованим " +"користувачам замість типового повідомлення." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Зображення" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Вхідні" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Проіндексований контент" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Внутрішні користувачі" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Прикріплення, що редагується" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "У закладках" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Стежить" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "Вважається багатосторінковим" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "Елементи в смітнику буде видалено назавжди після %s днів." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "" +"Елементи, переміщені в смітник, будуть видалені назавжди після %s днів." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Юридичні" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Давайте обробимо документи у вашій вхідній пошті.
    Примітка: " +"Використовуйте теги, щоби фільтрувати документи та структурувати ваш " +"процес." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "" +"Давайте обробимо ці рахунки постачальників: надішліть у папку Фінанси." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Давайте обробимо цей документ, що надійшов з нашого сканера." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Позначте цей лист, як юридичний
    Порада: дії можна адаптувати до " +"вашого процесу, відповідно до папки." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Посилання" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "URL посилання" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Посилання скопійоване в буфер обміну!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Виявлення вхідних повідомлень на основі локальної частини" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Заблокувати" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Заблокований" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Заблоковано" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Зробити примітку..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Логін" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Вийти" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Повідомлення" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Помилка доставлення повідомлення" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Повідомлення" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Тип Mime" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Модель" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Моделі" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Місяці" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Перетягнути цю сторінку до смітника" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Перетягнути до смітника" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Перемістити в смітник" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "Перемістити в смітник?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Переміщено в смітник" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Мої дії" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Дедлайн моєї дії" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Мої документи" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Назва" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Новий" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Новий файл" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Нова група" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Наступна подія календаря дій" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Дедлайн наступної дії" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Підсумок наступної дії" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Тип наступної дії" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Видів діяльності не знайдено. Давайте створимо один!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "Жодні псевдоніми не налаштовані" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Не вибрано жодного документу" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Немає посилань, якими поділилися" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Немає" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Не є файлом" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Не прикріплений" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Примітка" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Повідомити" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Кількість дій" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Кількість помилок" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Кількість повідомлень, які вимагають дії" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Кількість повідомлень з помилковою дставкою" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Логотип Odoo" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Веб-сайт Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Старіший" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"Необов'язковий ID потоку (запису), до якого буде додано всі вхідні " +"повідомлення, навіть якщо вони не відповіли на нього. Якщо встановлено, це " +"повністю призведе до вимкнення створення нових записів." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Або надсилайте електронні листи на адресу" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Інше" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Власник" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Власник: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Батьківська папка" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Батьківська модель" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Батьківський шлях" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID запису батьківської теми" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Батьківська модель, що містить псевдонім. Модель, яка містить посилання на " +"псевдонім, не обов'язково являє собою модель, що дається alias_model_id " +"(наприклад: project (parent_model) і завдання (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Часткове переміщення" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Партнер" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Закріпити" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Політика публікації повідомлення на документі за допомогою mailgateway.\n" +"- всі: кожен може опублікувати\n" +"- партнери: лише автентифіковані партнери\n" +"- підписники: лише ті, хто підписаний на відповідний документ або учасники підписаних каналів\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Присутній" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Презентації" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Проект" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Оцінювання" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Останній" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Запис" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "Записати тему ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Сторінки, що залишилися" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Листи з нагадуваннями були надіслані." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Нагадування завантажити ваш документ{{ object.name and ' : ' + object.name " +"or '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Вилучити учасника" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Перейменувати" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Запит" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Запитати дію" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Запит на" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Подати запит на документ" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Подати запит на файл" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Запитуваний\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Запитуваний документ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Запитувані документи" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Назва моделі резервації" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID ресурсу" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Модель ресурсу" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Назва ресурсу" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Відповідальний" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Відповідальний користувач" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Відновлення" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Обмежено" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Папка з обмеженим доступом" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Роль" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Помилка доставки SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Продажі" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Зберегти" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Вибрати все" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Оберіть сторінку" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Оберіть наступну сторінку" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Оберіть наступні сторінки групи" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Оберіть попередню сторінку" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Оберіть попередні сторінки групи" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Оберіть/скиньте усі сторінки" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Надіслати" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "Надішліть цей лист до юридичного відділу, додавши теги справа." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Надсилається партнеру під час запиту на документ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Послідовність" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Встановити затримку видалення для документів у смітник" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Встановіть нагадування в діях, щоб сповістити користувачів, які не " +"завантажили запитуваний документ" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Налаштування" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Поділитися" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Скорочення" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Розмір:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Деякі файли неможливо завантажити (макс. розмір: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Початковий документ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Розділити" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Розділити PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Розділіть обрані сторінки" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Позначено зірочкою" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Етап заснований на діях\n" +"Протерміновано: термін виконання вже минув\n" +"Сьогодні: дата дії сьогодні\n" +"Заплановано: майбутні дії." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Залишайтеся тут" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Структура" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Підсумок" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Мітка" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Назва тегу" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Мітки" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Текст" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "Затримка видалення повинна бути позитивною." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Модель (тип документу Odoo), до якої відповідає цей псевдонім. Будь-яка " +"вхідна електронна пошта, яка не відповідає існуючому запису, призведе до " +"створення нового запису цієї моделі (наприклад, завдання проекту)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Ім'я псевдоніма електронної пошти, наприклад, \"Робота\", якщо ви хочете " +"отримувати повідомлення електронної пошти на " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Цього місяця" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Цього тижня" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Це прикріплення вже є документом" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Цей документ було запитано.\n" +" Завантажити його." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "Цей файл було відправлено в смітник і буде видалено назавжди %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Вони представляють різні категорії речей, які вам потрібно зробити " +"(наприклад, «Зателефонувати» або «Надіслати електронний лист»)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Ескіз" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Статус ескізу" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "" +"Примітка: налаштуйте ваш сканер для відправки документів на цю адресу." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Примітка: Станьте безпаперовою компанією" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Перевірити" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Перевірити" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Сьогодні" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Перемкнути закладку" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Підказка" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Смітник" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "True, якщо ми можемо редагувати посилання прикріплення." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Тип" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Тип дії виключення на записі." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"URL %s здається незавершеним, оскільки не починається з цього http(s):// або" +" ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "Перегляд зображення URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Розблокувати" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Неназваний" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Відкріпити" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Завантажити" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Завантажте файл або перетягніть його сюди." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Запит на завантаження файлу" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Користувач" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Користувацький дозвіл" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "ПДВ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Підтверджено" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Відео" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Глядач" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Хочете стати безпаперовою компанією? Відкрийте для себе Odoo " +"Документи." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Повідомлення з веб-сайту" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Історія бесіди на сайті" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Тижні" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "Що ви хочете зробити з рештою сторінок?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Ви" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Ви можете завантажити файл з комп'ютера або скопіювати та вставити посилання" +" на ваш файл." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "днів." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "документ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "документи" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "наприклад: Пропозиція обговорити" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "напр., Фінанси" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "напр., Відстуні витрати" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "напр., Затвердити" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "напр., https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "файли" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "folder" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "обрати" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "поділився" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "без назви" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" diff --git a/addons_extensions/documents/i18n/vi.po b/addons_extensions/documents/i18n/vi.po new file mode 100644 index 000000000..4856552eb --- /dev/null +++ b/addons_extensions/documents/i18n/vi.po @@ -0,0 +1,3955 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Wil Odoo, 2024 +# Thi Huong Nguyen, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Thi Huong Nguyen, 2024\n" +"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr " (%s đã bị khoá)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "Có lẽ bạn muốn sử dụng thao tác ghim." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (bản sao)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s (trang còn lại)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s tệp" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s thư mục" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s tài liệu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s tệp không được di chuyển vì bị khóa bởi người dùng khác" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s tài liệu mới đã được tạo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s trang đã bị xoá" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s được chia sẻ với bạn" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +". Các tệp được quét sẽ hiện tự động trong không gian làm việc. Sau đó, xử lý" +" tài liệu hàng loạt bằng công cụ tách: khởi chạy tác vụ do người dùng xác " +"định, yêu cầu chữ ký, chuyển thành hóa đơn mua hàng bằng AI,..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1 tệp" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1 thư mục`" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1 tài liệu" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Mẹo: Trở thành công ty không giấy" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "Bỏ chọn trang này vì chúng tôi dự định xử lý hóa đơn trước." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "Chọn trang này để tiếp tục." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    Cung cấp bởi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " Tải xuống tất cả" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " Tải tệp xuống" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " Xem trước tệp" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr "Tải lên" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " Thay thế tệp" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "Tài liệu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "Bản ghi
    liên quan
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "Tài liệu yêu cầu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;Tài liệu." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr " Yêu cầu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "Tài liệu yêu cầu" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Yêu cầu tài liệu:
    \n" +" \n" +" Hộp thư tài chính\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Xin chào OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) đề nghị bạn cung cấp tài liệu sau:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Hộp thư tài chính\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Ví dụ về ghi chú.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Vui lòng cung cấp cho chúng tôi tài liệu còn thiếu trước ngày 17/05/2021.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Cung cấp bởi Odoo Documents\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Yêu cầu tài liệu:
    \n" +" \n" +" Hộp thư tài chính\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Xin chào OdooBot,\n" +"

    \n" +" Hãy nhớ tải lên tài liệu được yêu cầu của bạn:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Hộp thư tài chính\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Ví dụ về ghi chú.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Vui lòng cung cấp cho chúng tôi tài liệu còn thiếu trước ngày 17/05/2021.\n" +"

    \n" +" Cảm ơn bạn!\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Cung cấp bởi Odoo Tài liệu\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" +"Một từ điển Python sẽ được đánh giá để cung cấp giá trị mặc định khi tạo bản" +" ghi mới cho bí danh này. " + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "Cần phải có đích khi tạo nhiều lối tắt cùng lúc." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "Một thư mục không thể được bao gồm trong chính nó" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "Một lối tắt không thể trỏ đến chính nó" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "Truy cập" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "Lỗi Truy Cập" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "Token truy cập" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "Truy cập tất cả tài liệu của bạn" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "Không thể thay đổi đối tác và tài liệu truy cập." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "Truy cập một thư mục hoặc tài liệu" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "Token truy cập đã được sử dụng." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "URL truy cập" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "Tác vụ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "Tác vụ cần thiết" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "Đang hoạt động" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "Hoạt động" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "Hoạt động" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "Hoạt động ngoại lệ" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "Kế hoạch hoạt động" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "Trạng thái hoạt động" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "Loại hoạt động" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "Biểu tượng loại hoạt động" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "Loại hoạt động" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"Kế hoạch hoạt động được sử dụng để chỉ định danh sách hoạt động chỉ trong vài cú nhấp chuột\n" +" (VD: \"Quy trình ký tên NDA\", \"Luồng không gian làm việc\", ...)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "Kiểu hoạt động" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "Thêm" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "Thêm tệp" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "Thêm thư mục" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "Add Tag Bill" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "Đã xác thực" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "Thêm Url" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "Thêm tệp mới" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "Thêm người hoặc địa chỉ email..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "Thêm người hoặc địa chỉ email:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "Thêm lối tắt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "Thêm sao" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "Các tài liệu bổ sung mà bạn có quyền truy cập." + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "Quản trị viên" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "Quảng cáo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "Bí danh" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "Bảo mật bí danh liên hệ " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "Miền bí danh" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "Tên miền bí danh" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "Email bí danh" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "Tên bí danh" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "Trạng thái bí danh" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "Thẻ bí danh" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "Trạng thái bí danh được ước tính trong tin nhắn đã nhận gần đây nhất." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "Mô hình bí danh" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "Tất cả" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "" +"Tất cả người dùng có quyền truy cập vào %(documentType)s này hoặc phần chính" +" của nó sẽ có quyền chỉnh sửa." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "Quyền truy cập được phép" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "Tài liệu đã liên kết: %s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "" +"Một cách dễ dàng để xử lý thư đến là cấu hình máy quét của bạn để gửi tệp " +"PDF tới" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"Một cách xử lý email nhận được dễ dàng là cấu hình máy quét gửi tệp PDF tới " +"email của không gian làm việc. Các tệp được quét sẽ hiện tự động trong không" +" gian làm việc. Sau đó, xử lý tài liệu hàng loạt bằng công cụ tách: khởi " +"chạy tác vụ do người dùng xác định, yêu cầu chữ ký, chuyển thành hóa đơn mua" +" hàng bằng AI,..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "Đã xảy ra lỗi khi tải lên." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "Bất kỳ ai trên internet có liên kết đều có thể %(action)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "Bất cứ ai có liên kết" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "Lưu trữ (các) tệp gốc" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "Bạn có chắc chắn muốn xóa trang được tập trung không?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "Bạn có chắc chắn muốn xóa (các) trang đã chọn không" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "Bạn có chắc chắn muốn xóa trang này không?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "Bạn có chắc chắn muốn xóa vĩnh viễn tài liệu này không?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "Bạn có chắc chắn muốn xóa vĩnh viễn các tài liệu này không?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "Vì tệp PDF này chứa nhiều tài liệu, hãy tách và xử lý hàng loạt." + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "Tệp đính kèm" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "Số lượng tệp đính kèm" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "Mô tả tệp đính kèm" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "Tên tệp đính kèm" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "Loại tệp đính kèm" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "Tác vụ nhúng khả dụng" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "Hoá đơn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "Trang trống" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "Brochure" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "" +"Bằng cách xác định một thư mục, hoạt động tải lên sẽ tạo một tài liệu." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "Hủy" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "Checksum/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "Phụ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "Chọn hồ sơ để tạo liên kết" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "Chọn hoặc cấu hình máy chủ email" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "Bấm vào thẻ để chọn tài liệu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "Bấm vào hình thu nhỏ để xem trước tài liệu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "" +"Bấm vào dấu phân cách trang: chúng tôi không muốn tách 2 trang này vì" +" chúng thuộc về cùng một tài liệu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "Nhấp vào dấu x để thoát chế độ xem trước." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "Đã tạo người dùng" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "Đóng" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "Đóng công cụ phân tách" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "Màu" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "Gốc chung cho tất cả người dùng công ty." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "Công ty" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "Cài đặt cấu hình" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "Cấu hình" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "Cấu hình" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "Liên hệ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "Hợp đồng" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "Nút bảng điều khiển" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "Copy Link" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "Sao chép liên kết" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "Tạo hoạt động" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "Tạo lối tắt" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "Tạo một kế hoạch hoạt động tài liệu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "Tạo một hoạt động mới" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "Tạo và chỉnh sửa liên hệ mới \"" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "Tạo liên hệ mới \"" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "Ngày tạo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "Tin nhắn bị trả lại tuỳ chỉnh" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "Ngày" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "Giá trị Mặc định" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "Độ trễ sau khi xóa vĩnh viễn tài liệu trong thùng rác (ngày)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "Xoá" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "Xóa các trang được tập trung hoặc đã chọn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "Xoá vĩnh viễn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "Độ trễ hành động xoá" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "Độ trễ hành động xoá" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "Độ trễ hành động xoá (ngày)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "Ngừng sử dụng" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "Chi tiết" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "Huỷ bỏ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "" +"Bạn có muốn thoát mà không lưu hoặc tập hợp các trang vào một tài liệu " +"không?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "Tài liệu" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "Tài liệu/Đối tác" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "Quyền truy cập nội bộ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "Liên kết truy cập tài liệu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "Số lượng tài liệu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "Tên tài liệu" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "Kế hoạch tài liệu" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "Chuyển hướng tài liệu" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "Yêu cầu tài liệu" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "" +"Yêu cầu tài liệu {{ object.name != False and ': '+ object.name or '' }}" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "Yêu cầu tài liêu: %(name)s Được tải lên bởi: %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "Yêu cầu tài liệu: Nhắc nhở" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "Token tài liệu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "Xem trước tài liệu" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "Tài liệu được tải lên bởi %(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "Tài liệu: Yêu cầu tài liệu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "Tài liệu" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "Tài liệu liên kết với hồ sơ" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "Mixin tạo tài liệu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "Không thể chia sẻ tài liệu trong Thùng rác" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "Mixin huỷ liên kết tài liệu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "Hoàn tất" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "Hoàn thành!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "Tải xuống" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "Tải xuống #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "Tải xuống tất cả tệp" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "Tải tệp xuống" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "Tải thư mục xuống dưới dạng zip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "Tải xuống zip #{subfolder.name}" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "Nháp" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "Thả tệp tin vào đây để tải lên" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "Ngày đáo hạn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "Loại thời hạn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "Nhân bản" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "Chỉnh sửa" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "Biên tập" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "Bí danh email" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "Bí danh Email" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "Tải lên email" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "Email cc" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "Ví dụ miền email 'example.com' trong 'odoo@example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "Liên kết email" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "Lỗi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "Thoát xem trước/Bỏ chọn/Thoát" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "Thoát công cụ phân tách" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "Thoát mà không lưu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "Ngày hết hạn:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "Chi phí" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "Ngày hết hạn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "Xuất" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "Bình luận bổ sung..." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "Yêu thích của" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "Tệp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "Nội dung Tệp (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "Nội dung Tệp (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "Phần mở rộng tệp" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "Dung lượng Tệp" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "Mô hình hỗ trợ dòng tệp cho bộ điều khiển" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "Tập tin" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "Tập trung tệp" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "Các tệp sẽ được chuyển vào thùng rác và bị xóa vĩnh viễn sau" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "Các tệp sẽ được chuyển vào thùng rác và bị xóa vĩnh viễn sau %s ngày." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "Tài chính" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "Tài chính" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "Tập trung vào trang đầu tiên của nhóm tiếp theo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "Tập trung vào trang đầu tiên của nhóm trước đó" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "Tập trung vào trang tiếp theo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "Tập trung vào trang trước đó" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "Thư mục" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "Thư mục" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "Người theo dõi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "Người theo dõi (Đối tác)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font biểu tượng, ví dụ: fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "Tập hợp vào một tài liệu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "Chung" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "Quyền truy cập chung" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "Nhóm theo" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "Nhân sự" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "Có tin nhắn" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "Ẩn lối tắt" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "Lịch sử" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "Trang chủ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "" +"ID của bản ghi chính chứa bí danh (ví dụ: dự án chứa bí danh tạo nhiệm vụ)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "Biểu tượng" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "Biểu tượng cho thấy một hoạt động ngoại lệ." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "" +"Nếu \"Đúng\", chỉ những người được cấp quyền truy cập trực tiếp vào tài liệu" +" này mới có thể xem. Nếu \"Sai\", quyền truy cập qua liên kết cũng được cấp " +"cho tất cả những người có thể truy cập vào thư mục chính." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Nếu chọn, bạn cần chú ý tới các tin nhắn mới." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Nếu chọn, một số tin nhắn sẽ có lỗi gửi." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "" +"Nếu được cài đặt, nội dung này sẽ tự động được gửi đến người dùng chưa được " +"cấp quyền thay vì tin nhắn mặc định." + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "Hình ảnh" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "Không thể xóa các thư mục được các ứng dụng khác sử dụng." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "Không thể mời đối tác vào nhiều tài liệu cùng một lúc." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"Không thể di chuyển các mục sau vì điều này sẽ tạo ra hệ thống phân cấp đệ quy:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "Không thể truy cập" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "Hộp thư đến" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "" +"Giá trị không chính xác. Sử dụng một trong những giá trị sau cho các trường " +"sau: %(hints)s.)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "Nội dung được lập chỉ mục" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "Người dùng Nội bộ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "Quyền người dùng nội bộ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "Người dùng nội bộ có thể %(action)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "ID thư mục không hợp lệ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "Thao tác không hợp lệ" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "Vai trò không hợp lệ." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "Là tệp đính kèm có thể sửa" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "Được yêu thích" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "Là người theo dõi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "Được coi là nhiều trang" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "" +"Không thể di chuyển tài liệu đã lưu trữ hoặc tài liệu vào thư mục đã lưu " +"trữ." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"Những mục bạn muốn khôi phục nằm trong các thư mục lưu trữ. Để khôi phục chúng, bạn phải khôi phục các mục sau bao gồm các thư mục:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "Các mục trong thùng rác sẽ bị xóa vĩnh viễn sau %s ngày." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "Các mục được đưa vào thùng rác sẽ bị xóa vĩnh viễn sau %s ngày." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "Được truy cập lần cuối vào" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "Hợp pháp" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "" +"Hãy xử lý tài liệu trong hộp thư đến.
    Mẹo: Dùng thẻ để lọc tài liệu " +"và tạo cấu trúc cho quá trình." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "Hãy xử lý các hóa đơn này: gửi tới không gian làm việc Tài chính." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "Hãy xử lý tài liệu này, đến từ máy quét." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "" +"Hãy gắn thẻ pháp lý cho thư này
    Mẹo: có thể điều chỉnh tác vụ cho " +"phù hợp với quy trình, tùy theo không gian làm việc." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "Liên kết" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "Truy cập qua liên kết bị ẩn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "Quyền truy cập qua liên kết" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "URL liên kết" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "Liên kết được sao chép vào bộ nhớ tạm!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "Liên kết được sao chép vào bộ nhớ tạm." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "Liên kết được sao chép vào bộ nhớ tạm!" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "Phát hiện gửi đến dựa trên phần cục bộ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "Khoá" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "Đã khoá" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "Bị khóa bởi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "Ghi chú ..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "Đăng nhập" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "Đăng xuất" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "Email: %s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "Đánh dấu hoạt động là đã hoàn thành" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "Gộp PDF" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "Tin nhắn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "Lỗi gửi tin nhắn" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "Tin nhắn" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "Loại Mime" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "Thiếu tham chiếu tài liệu." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "Mô hình" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "Mô hình" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "Tháng" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "Chuyển trang này vào thùng rác" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "Chuyển vào thùng rác" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "Chuyển vào thùng rác" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "Chuyển vào thùng rác?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "Đã chuyển vào thùng rác" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "Phải có liên kết để truy cập" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "Hoạt động của tôi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "Hạn chót hoạt động của tôi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "Tài liệu của tôi" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "Drive của tôi" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "Vai trò NULL phải có last_access_date được thiết lập" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "Tên" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "Tên/Phần mở rộng" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "Mới" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "Tệp mới" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "Thư mục mới" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "Nhóm mới" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "Sự kiện trên lịch cho hoạt động tiếp theo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "Hạn chót cho hoạt động tiếp theo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "Tóm tắt hoạt động tiếp theo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "Loại hoạt động tiếp theo" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "Không tìm thấy loại hoạt động nào. Hãy tạo một loại!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "Không có bí danh nào được cấu hình" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "Không có tài liệu nào được chọn" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "Chưa chọn mục nào" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "Không ai trên internet có thể truy cập" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "Không có liên kết được chia sẻ" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "Không" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "Không phải tệp" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "Không phải tệp." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "Không được đính kèm" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "Ghi chú" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "Thông báo" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "Số lượng tác vụ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "Số lượng lỗi" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Số tin nhắn cần xử lý" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Số tin nhắn bị gửi lỗi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Logo hệ thống" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Trang web Odoo" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "Cũ hơn" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "Chỉ Quản lý tài liệu mới có thể ghim thư mục." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "Chỉ Quản lý tài liệu mới có thể đặt bí danh." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "Chỉ Quản lý tài liệu mới có thể đặt bí danh." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "Chỉ có thể ghim các thư mục gốc do OdooBot sở hữu." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "Chỉ những người có quyền truy cập mới có thể mở bằng liên kết" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "Mở #{document_url.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "Mở thư mục #{subfolder.name}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "Mở bảng điều khiển quyền" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "" +"Thao tác không được hỗ trợ. Thay vào đó, vui lòng sử dụng \"Chuyển vào Thùng" +" rác\"/`action_archive`." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "" +"Thao tác không được hỗ trợ. Thay vào đó, vui lòng sử dụng \"Khôi " +"phục\"/`action_unarchive`." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" +"ID tùy chọn của một luồng (bản ghi) tập hợp tất cả tin nhắn nhận được, thậm " +"chí nếu đó là tin nhắn không có phản hồi. Nếu cài đặt, điều này sẽ tắt hoàn " +"toàn việc tạo các bản ghi mới. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "Tin nhắn tùy chọn..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "Hoặc gửi email tới" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "Khác" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "Người phụ trách" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "Người sở hữu: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "Chủ sở hữu: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "Chủ sở hữu: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "Thư mục chính" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "Mô hình chính" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "Tuyến chính" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "ID luồng bản ghi chính" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"Mô hình chính chứa bí danh này. Mô hình chứa tham chiếu bí danh không nhất " +"thiết phải là mô hình được đưa ra bởi alias_model_id (Ví dụ: dự án " +"(parent_model) và nhiệm vụ (model))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "Chuyển một phần" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "Đối tác" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "Mọi người có quyền truy cập" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "Ghim" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "Đã ghim vào gốc của công ty" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "" +"Vui lòng đăng nhập hoặc liên hệ với người đã chia sẻ liên kết này để biết " +"thêm thông tin." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"Chính sách cho phép đăng tin nhắn lên tài liệu sử dụng cổng email.\n" +"- mọi người: mọi người có thể đăng\n" +"- đối tác: chỉ các đối tác đã xác thực\n" +"- người theo dõi: chỉ những người theo dõi của tài liệu liên quan hoặc thành viên của kênh đang theo dõi\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "Có mặt" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "Bài đăng" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "Xem trước tệp" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "Dự án" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "Đánh giá" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "Gần đây" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "Tài liệu được truy cập gần đây" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "Bản ghi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "ID luồng bản ghi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "Trang còn lại" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "Email nhắc nhở đã được gửi đi." + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "" +"Lời nhắc tải lên tài liệu của bạn{{ object.name and ' : ' + object.name or " +"'' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "Gỡ bỏ quyền truy cập" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "Gỡ thành viên" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "Hộp thư đến" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "Cần xác thực" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "Gỡ tất cả thẻ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "Gỡ sao" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "Đổi tên" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "Yêu cầu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "Yêu cầu hoạt động" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "Yêu cầu tới" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "Yêu cầu tài liệu" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "Yêu cầu tệp tin" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"Được yêu cầu\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "Tài liệu đã yêu cầu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "Tài liệu yêu cầu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "Đối tác được yêu cầu" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "Tên mô hình res" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "ID nguồn lực" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "Mô hình nguồn lực" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "Tên nguồn lực" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "Người phụ trách" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "Người phụ trách" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "Khôi phục" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "Bị hạn chế" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "Thư mục bị hạn chế" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "Hoàn nguyên thay đổi" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "Vai trò" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Lỗi gửi SMS" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "Bán hàng" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "Lưu" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "Lưu hoặc hủy bỏ các thay đổi trước" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "Đang lưu..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "Chọn tất cả" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "Chọn trang được tập trung" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "Chọn trang tiếp theo" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "Chọn các trang tiếp theo của nhóm" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "Chọn trang trước đó" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "Chọn các trang trước đó của nhóm" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "Chọn/Bỏ chọn tất cả trang" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "Gửi" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "Gửi đến tài chính" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "Gửi thư tới phòng pháp lý bằng cách gán đúng thẻ." + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "Gửi cho đối tác khi yêu cầu tài liệu từ họ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "Trình tự" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "Thiết lập tác vụ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "Đặt độ trễ hành động xóa cho tài liệu trong Thùng rác" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "Thiết lập ngày hết hạn" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "" +"Đặt nhắc nhở trong các hoạt động để thông báo cho người dùng không tải lên " +"tài liệu được yêu cầu" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "Cài đặt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "Chia sẻ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "Chia sẻ: %(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "Được chia sẻ với tôi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "Đang chia sẻ..." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "Lối tắt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "Lối tắt đã tạo" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "Lối tắt đã tạo trong Drive của tôi" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "Mỗi lần chỉ có thể tạo một lối tắt." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "Lối tắt không thể thay đổi tài liệu đích." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "Lối tắt không thể chứa tài liệu." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "Kích thước:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "Không thể tải lên một số tệp (kích thước tối đa: %s)." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "Chứng từ gốc" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "Không thể chia sẻ các thư mục đặc biệt" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "Tách" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "Tách PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "Tách tất cả trang trắng" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "Tách các trang đã chọn" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "Được gắn sao" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"Trạng thái dựa trên hoạt động\n" +"Quá hạn: Hạn chót hạn đã qua\n" +"Hôm nay: Hôm nay là ngày phải thực hiện\n" +"Kế hoạch: Cần thực hiện trong tương lai." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "Ở đây" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "Cấu trúc lương" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "Tóm tắt" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "Thẻ" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "Tên thẻ" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "Tên thẻ đã được sử dụng" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "Thẻ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "Văn bản" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "Văn bản hiển thị khi di chuột qua thẻ này" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "Độ trễ hành động xóa phải dương." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "URL tài liệu đã được sao chép vào bộ nhớ tạm của bạn." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "Tài liệu đã được di chuyển." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"Các tài liệu sau đây không thể có bí danh:\n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"Người dùng Cổng thông tin không thể sở hữu các tài liệu/thư mục sau:\n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "Các tài liệu/lối tắt sau đây có loại không khớp:\n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "" +"Các lối tắt sau đây không thể được thiết lập làm phần chính của tài liệu:\n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"Mô hình (Loại tài liệu Odoo) mà bí danh này tương tác. Mọi email đến mà " +"không phải là email trả lời một bản ghi hiện có sẽ tạo ra một bản ghi mới " +"trong mô hình này. (ví dụ: Nhiệm vụ dự án) " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" +"Tên của bí danh email, ví dụ: 'jobs' nếu bạn muốn nhận email gửi đến địa chỉ" +" " + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "Tháng này" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "Tuần này" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "Hành động này không tồn tại." + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "Tệp đính kèm đã là một tài liệu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "Tài liệu này không tồn tại hoặc không công khai." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"Tài liệu này đã được yêu cầu.\n" +" Tải lên." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "Tài liệu này đã được khôi phục." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "Tệp này đã được đưa vào thùng rác và sẽ bị xóa vĩnh viễn vào %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "Thư mục này không tồn tại." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "Đây là một lối tắt" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "Đối tác này đã được thiết lập trên tài liệu này." + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "" +"Loại hành động đại diện cho những danh mục việc bạn cần làm khác nhau (ví " +"dụ: \"Gọi\" hoặc \"Gửi email\"). " + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "Hình nhỏ" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "Trạng thái hình thu nhỏ" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "Mẹo: định cấu hình máy quét để gửi tất cả tài liệu đến địa chỉ này." + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "Mẹo: Trở thành một công ty không giấy tờ" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "Cần xác thực" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "Để xác nhận" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "Hôm nay" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "Bật/tắt yêu thích" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "Tooltip" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "Thùng rác" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "Quản lý rác" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "Đúng nếu có thể sửa tệp đính kèm được liên kết." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "Loại" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "Loại hoạt động ngoại lệ trong bản ghi." + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "" +"URL %s có vẻ chưa hoàn chỉnh vì nó không bắt đầu bằng http(s):// hoặc ftp://" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "Hình ảnh xem trước URL" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "Tác vụ không khả dụng." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "Mở khoá" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "Chưa đặt tên" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "Bỏ ghim" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "Tải lên" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"Tải lên một tệp hoặc kéo nó vào đây." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "Tải lên tệp yêu cầu" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "Người dùng" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "Vai trò truy cập của người dùng" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "Quyền của người dùng" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "Mã số thuế" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "Đã xác thực" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "Video" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "Người xem" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "" +"Bạn muốn biến doanh nghiệp mình thành một công ty không giấy tờ? Hãy " +"khám phá Odoo Tài liệu." + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "Thông báo trên trang web" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "Lịch sử trao đổi qua trang web" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "Tuần" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "Bạn muốn làm gì với những trang còn lại?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "" +"Tuyệt vời... 6 tài liệu được xử lý trong vài giây. Bạn rất xuất sắc.
    " +"Tour đã hoàn thành. Bây giờ, hãy thử tải lên tài liệu của bạn." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "Bạn" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "Bạn không được phép (hủy) lưu trữ tài liệu." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "Bạn không được phép (bỏ) ghim thư mục" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "" +"Bạn không được phép thay đổi quyền sở hữu những tài liệu mà bạn không sở " +"hữu." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "Bạn không được phép xóa tất cả các mục này." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "Bạn không được phép thực hiện các tác vụ nhúng." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "Bạn không được phép thực hiện thao tác này." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "Bạn không được phép ghim/bỏ ghim các Tác vụ nhúng." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "Bạn không được phép viết trong thư mục này." + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" +"Bạn có thể tải tệp lên từ máy tính hoặc sao chép/dán liên kết internet vào " +"tệp của bạn." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "Bạn không thể ghim các tác vụ cho thư mục đó." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "Bạn không thể thực hiện tác vụ ping nào trên tài liệu đó." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "Bạn không thể ping loại tác vụ đó." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "" +"Bạn không thể cập nhật quyền truy cập của lối tắt, thay vào đó hãy cập nhật " +"mục tiêu của lối tắt đó." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "Bạn không thể truy cập folder_id đó. " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "" +"Bạn không thể tạo lối tắt hoặc di chuyển tài liệu vào thư mục đặc biệt này." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "Bạn không thể truy cập các thư mục trong thùng rác." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "" +"Bạn không thể thay đổi chủ sở hữu của những tài liệu mà bạn không sở hữu." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "Bạn không thể xóa các thẻ được sử dụng trong các tác vụ máy chủ." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "Bạn không thể sao chép (các) tài liệu trong Thùng rác." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "Bạn không thể di chuyển các thư mục hoặc tệp trong thùng rác." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "Bạn không thể gỡ bỏ đối tác này" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "Bạn không thể chia sẻ nhiều tài liệu cùng một lúc" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "Bạn không có đủ quyền truy cập để xóa những tài liệu này." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "Bạn không có quyền di chuyển tài liệu đến thư mục đó." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "" +"Bạn phải ở trong một không gian làm việc có thể viết được để tải tệp lên" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "Vai trò của bạn: %s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "Không gian riêng của bạn." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "bí danh" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "byte" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "ngày." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "tài liệu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "tài liệu" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "vd: Thảo luận về đề xuất" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "vd. Tài chính" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "VD: Thiếu hóa đơn chi phí" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "VD: Cần xác nhận" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "VD: https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "VD: mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "tệp" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "thư mục" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "thư mục," + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "mục đã được chọn" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "chọn" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "đã chia sẻ một tài liệu với bạn.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "đã chia sẻ một thư mục với bạn.
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "được chia sẻ bởi" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "đã chia sẻ tài liệu này với bạn:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "đã chia sẻ thư mục này với bạn:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "mã trạng thái: %(status)s, tin nhắn: %(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "không tên" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" URL" diff --git a/addons_extensions/documents/i18n/zh_CN.po b/addons_extensions/documents/i18n/zh_CN.po new file mode 100644 index 000000000..24b920444 --- /dev/null +++ b/addons_extensions/documents/i18n/zh_CN.po @@ -0,0 +1,3887 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# 稀饭~~ , 2024 +# Wil Odoo, 2024 +# Odoo哥 , 2024 +# Chloe Wang, 2024 +# Raymond Yu , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Raymond Yu , 2024\n" +"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "(%s已锁定 )" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "也许您的意思是使用固定动作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s(副本)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s(剩余页数)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s 文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s文件夹" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s文件未被移动,因为它们被另一个用户锁定" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "%s创建新文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "%s页已删除" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s与您分享" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +"处理收到的邮件的一个简单方法是配置扫描仪以将PDF发送到您的工作区电子邮件。扫描的文档将自动出现在您的工作区中。然后,使用split工具批量处理文档:启动用户定义的动作、请求签名、使用AI转换为供应商账单等。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr ".
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1 文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1 文件夹" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1 文件" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023年" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024年" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "提示:成为一个无纸化公司" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "取消选择此页面,因为我们计划先处理所有账单。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "选择此页继续" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    技术提供" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " 全部下载" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " 下载文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " 预览文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " 上传" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " 替换文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "文档" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "相关的
    记录
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "请求的文档" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr "&nbsp;文档。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "请求" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "请求的文件" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" 文件请求:
    \n" +" \n" +" 收件箱财务\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" OdooBot 您好!\n" +"

    \n" +" OdooBotodoobot@example.com)要求您提供以下文件:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" 收件箱财务\n" +" \n" +"
    \n" +"
    \n" +" \n" +" 备注示例文字。\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" 请在 2021-05-17 之前,向我们提供缺漏的文件。\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" 由 Odoo 文件管理 驱动\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" 文件请求:
    \n" +" \n" +" 收件箱财务\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" OdooBot 您好!\n" +"

    \n" +" 温馨提醒,请上传要求的文件:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" 收件箱财务\n" +" \n" +"
    \n" +"
    \n" +" \n" +" 备注示例文字。\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" 请在 2021-05-17 之前,向我们提供缺漏的文件。\n" +"

    \n" +" 谢谢。\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" 由 Odoo 文件管理 驱动\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "为该别名创建新记录时,将对其进行评估以提供默认值的Python字典。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "同时创建多个快捷方式时需要目的地。" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "文件夹本身不能包括在内" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "快捷方式不能指向自身" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "访问" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "访问错误" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "访问令牌" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "访问您的所有文件" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "访问文件和业务伙伴不可更改。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "访问文件夹或文件" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "访问令牌已使用" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "访问URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "操作" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "所需操作" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "有效" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "活动" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "活动" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "活动异常标示" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "活动计划" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "活动状态" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "活动类型" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "活动类型图标" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "活动类型" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"只需点击几下,活动计划就可用于分配活动列表\n" +" (例如:“NDA 签名流程”、“工作区工作流程”等)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "活动类型" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "添加" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "添加文件" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "添加文件夹" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "添加账单标签" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "添加已验证标签" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "添加 URL" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "添加新文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "添加人员或电子邮件地址…" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "添加人员或电子邮件地址:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "添加快捷方式" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "加入星号" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "您有权访问的其他文件。" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "管理员" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "广告" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "别名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "别名授权于" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "别名域" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "别名域名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "别名电子邮件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "别名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "别名状态" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "别名标记" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "根据收到的最后一条消息评估别名状态。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "模型别名" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "全部" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "所有有权存取此 %(documentType)s 类型或其母级文件的使用者,都将会拥有编辑权限。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "允许访问" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "已经链接的文档:%s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "处理传入邮件的一种简单方法是将扫描仪配置为将 PDF 发送到" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"处理收到的邮件的一个简单方法是配置扫描仪以将PDF发送到您的工作区电子邮件。扫描的文档将自动出现在您的工作区中。然后,使用split工具批量处理文档:启动用户定义的动作、请求签名、使用AI转换为供应商账单等。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "上传时发生错误。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "互联网上任何拥有该链接的人都可以%(action)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "任何有链接的人" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "归档原始文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "您确定要删除当前页吗?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "您确定要删除所选页面吗?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "您确定要删除此页面吗?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "您确定要永久删除文档吗?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "您确定要永久删除文件吗?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "由于此PDF包含多个文档,所以让我们拆分并批量处理。" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "附件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "附件数量" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "附件说明" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "附件名称" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "附件类型" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "可用的嵌入操作" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "账单" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "空白页" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "宣传册" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "通过定义文档夹,上载活动将生成一个文档" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "取消" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "校验和/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "子级" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "选择一个要链接的记录" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "选择或配置电子邮件服务器" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "单击卡片选择文档。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "单击缩略图预览文档。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "单击页面分隔符:我们不想拆分这两个页面,因为它们属于同一个文档。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "点击交叉图示,以离开预览。" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "已生成客户" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "关闭" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "关闭拆分工具" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "颜色" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "所有公司使用者的共同根位置。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "公司" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "配置设定" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "配置" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "配置" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "联系人" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "合同" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "控制面板按钮" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "复制链接" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "复制链接" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "创建活动" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "创建快捷方式" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "创建文档活动计划" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "创建新‎‎活动" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "创建和编辑新联系人“" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "创建新联系人”" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "创建人" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "创建日期" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "创建时间" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "自定义退回消息" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "天" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "默认值" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "在垃圾桶中永久删除文件后的延迟时间(天数)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "删除" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "删除重点或选定页面" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "永久删除" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "删除延迟" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "删除延迟" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "删除延迟(天数)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "已弃用" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "详情" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "丢弃" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "您希望不保存并退出,还是将页面合并到一个文档中?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "单据" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "文件/合作伙伴" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "内部的文件访问" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "文件访问链接" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "文档数" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "单据名称" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "文档计划
    " + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "文件重定向" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "‎文档请求‎" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "文档请求 {{ object.name != False and ':'+ object.name or '' }}." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "文件要求:%(name)s上传者:%(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "文档请求:提醒" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "文件令牌" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "文档预览" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "文件由%(user)s上传" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "文档:文档请求" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "文档" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "文档 链接到记录" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "文档创建混合" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "回收站里的文件无法分享" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "文件取消链接混入程式" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "已完成" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "完成!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "下载" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "下载 #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "下载所有文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "下载文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "将文件夹下载为 zip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "下载zip文件 #{subfolder.name}" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "草稿" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "拖动文件到此处上传" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "截止日期至" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "到期类型" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "复制" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "编辑" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "编辑" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "电子邮件别名" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "EMail别名" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "电子邮件上传" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "邮件抄送" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "电子邮件域名,例如 'odoo@example.com' 中的 'example.com'" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "电子邮件链接" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "错误" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "退出预览/取消选择/退出" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "退出拆分工具" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "退出时不保存" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "到期:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "费用" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "到期日" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "导出" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "额外评论" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "收藏" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "文件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "文件内容(base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "文件内容(raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "文件扩展" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "文件大小" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "控制器文件流帮助器模型" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "文件集中" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "文件将被发送到垃圾箱并永久删除" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "文件将被发送到垃圾箱,并在 %s 天后被永久删除。" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "财务" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "财务" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "聚焦下一组第一页" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "聚焦前一组第一页" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "聚焦下一页" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "聚焦上一页" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "文件夹" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "文件夹" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "关注者" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "关注者(合作伙伴)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font Awesome图标,例如:fa-tasks" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "汇集到一个文档" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "通用" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "一般访问" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "分组方式" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "HR" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "有消息" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "隐藏快捷方式" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "历史" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "首页" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "上级记录ID支持别名(例如:项目支持任务创建别名)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "图标" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "指示异常活动的图标。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "如果 “True”,则只有直接访问此文档的人员才能查看它。如果为 “False”,则还向所有可以访问母文件夹的人提供链接访问。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "如果勾选此项,则需要查看新消息。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "如果勾选此项, 某些消息将出现发送错误。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "如果设置,此内容将自动发送给未经授权的用户,而不是默认消息。" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "图像" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "无法删除其他应用程序使用的文件夹。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "无法同时在多个文件上邀请合作伙伴。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"无法移动以下项目,因为这会创建递归层次结构:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "不可访问" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "收件箱" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "不正确的值。对以下字段使用以下选项之一:%(hints)s)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "已索引的内容" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "内部用户" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "内部用户权限" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "内部用户可以%(action)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "无效文件夹ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "无效操作" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "无效角色。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "是可编辑的附件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "很受欢迎" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "是关注者" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "为多页" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "无法将存档文件或文件移动到存档文件夹。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"您要还原的项目包含在存档文件夹中。要还原这些项目,必须还原以下文件夹:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "垃圾箱中的项目将在 %s 天后被永久删除。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "移至垃圾箱的项目将在 %s 天后被永久删除。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "最后访问时间" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "最后更新人" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "法律" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "让我们处理收件箱中的文档。
    提示:使用标记筛选文档并组织流程。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "让我们处理这些账单:发送到财务工作区。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "让我们处理这个文档,从我们的扫描仪。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "让我们把这封邮件标记为法律
    提示:根据工作空间,动作可以根据你的流程进行调整。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "链接" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "链接访问隐藏" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "链接访问权限" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "链接网址" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "链接被复制到剪贴板!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "链接已复制到剪贴板。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "链接已复制到剪贴板!" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "收件时检测本地的别名域" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "锁定" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "已锁定" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "锁定者" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "记录一个备注..." + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "登录" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "注销" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "邮件:%s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "将活动标记为已完成" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "合并PDF" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "信息" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "消息发送错误" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "消息" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "MIME 类型" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "缺少参考文档。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "模型" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "模型" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "个月" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "将此页移至回收站" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "移至回收站" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "移动到回收站" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "移动到垃圾桶?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "移动到垃圾箱" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "必须具有访问链接" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "我的活动" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "我的活动截止时间" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "我的文档" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "我的驱动器" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "NULL 角色必须有一组 last_access_date" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "名称" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "名称 / 扩展名" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "新建" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "新建文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "新文件夹" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "新建组" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "下一活动日历事件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "下一活动截止日期" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "下一活动摘要" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "下一活动类型" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "未找到活动类型。让我们创建一个!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "未设置别名" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "尚未选择文档" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "未选择项目" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "互联网上无人可以访问" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "没有共享链接" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "无" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "不是文件" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "不是文件夹" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "未连接" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "备注" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "通知" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "操作数量" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "错误数量" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "需要采取行动的消息数量" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "发送错误的消息的数量" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo 徽标" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo 网站" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "过时" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "只有文档管理员可以固定文件夹。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "只有文档管理员可以设置别名。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "只有文档管理员才能设置别名。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "只能固定 OdooBot 拥有的根文件夹。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "只有有权访问的人才能打开该链接" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "开启 #{document_url.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "打开文件夹 #{subfolder.name}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "打开权限面板" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "不支持操作。请改用 “移至垃圾箱”/“action_archive”。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "不支持操作。请使用 “还原”/“action_unarchive ”。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "无论是否回复,所有的接收的邮件都将附上一条线索(记录)选配的ID。如果设置了,这个将完全阻止新记录的创建。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "可选消息…" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "或发送电子邮件至" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "其他" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "所有者" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "拥有人: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "所有者: #{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "所有者: #{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "‎上一级文件夹‎" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "上级模型" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "上级路径" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "上级记录ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"父级模型拥有别名。拥有别名参考的模型不一定是alias_model_id给出的模型 (例如:project(parent_model) 和任务 " +"(模型))" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "部分转移" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "合作伙伴" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "有权限的人" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "置顶" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "置顶于公司根级资料册" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "请登录或联系共享此链接的人员以获取更多信息。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"使用邮件网关在文档中发布消息的政策:\n" +"- 所有人:任何人都可以发布\n" +"- 合作伙伴:仅限认证通过的合作伙伴\n" +"- 关注者:仅限关联文档或关注频道的成员\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "出勤" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "展示" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "预览文件" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "项目" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "点评" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "最近" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "最近访问的文件。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "记录" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "记录线索ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "剩余页数" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "已发送提醒邮件。" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "提醒上传文件{{ 对象.名称和 ' : ' + 对象.名称或 '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "删除访问" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "移除成员" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "删除标签收件箱" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "移除标签以进行验证" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "删除所有标签" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "删除星标" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "重命名" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "请求" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "请求活动" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "请求" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "请求的文档" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "‎请求文件‎" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"要求\n" +" ∙" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "请求的文档" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "要求提供的文件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "被请求业务伙伴" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "资源模型名称" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "资源ID" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "资源模型" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "资源名称" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "负责人" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "责任用户" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "还原" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "受限" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "限制的文件夹" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "还原变更" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "角色" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "短信发送错误" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "销售" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "保存" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "先保存或放弃更改" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "正在保存" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "全选" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "选择特定页面" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "选择下一页" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "选择该组的下页" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "选择前页" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "选择该组的前页" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "选择/取消选择所有页面" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "发送" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "发送给财务" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "把这封信寄到法律部门,通过分配正确的标签。" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "在向合作伙伴索取文档时发送给他们" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "序列" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "设定操作" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "设置删除回收站中文件的延迟时间" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "设定到期日" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "在活动中设置提醒,通知未上传所需文档的用户" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "设置" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "分享" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "分享:%(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "请与我分享" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "分享" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "快捷" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "已创建快捷方式" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "已创建在我的驱动器中的快捷方式" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "快捷方式一次只能创建一个。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "快捷方式不能改变目标文件。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "快捷方式不包含文件。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "大小:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "某些文件无法上传(最大文件:%s)。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "源单据" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "特殊的文件夹不能分享" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "拆分" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "拆分PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "分割所有白页" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "分割选定页面" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "星标消息" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"基于活动的状态\n" +"逾期:超出到期日期\n" +"今天:活动日期是今天\n" +"计划:未来活动。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "呆在这里" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "结构" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "摘要" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "标签" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "标签名称" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "标签名称已被使用" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "标签" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "文本" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "将鼠标悬停在此标签上时显示的文本" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "删除延迟应为正值。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "文件URL已复制到剪贴板。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "该文件已被移除。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"以下文件不可有別名:\n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"以下文件/资料夹不可由门户网站使用者拥有:\n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "以下文件/捷径的类型不相符:\n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "以下快捷方式不能被设置为文件上级:\n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"相应于这个别名对应的模型(Odoo单据种类)。任何一封不属于对某个已存在的记录的到来邮件,将导致此模块中新记录的创建(例如:一个新的项目任务)。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "邮件别名的名称,例如:如果您要收取 的EMail,别名就要设为:\"jobs\"" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "本月" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "本周" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "这个动作不存在。" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "此附件已是文档" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "此文件不存在或未公开提供。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"已要求提供此文档。\n" +" 上传。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "此文件已恢复。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "该文件已被发送到垃圾箱,并将在 %s 上被永久删除。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "此目录不存在。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "这是一个快捷方式" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "该合作伙伴已在本文档中设置。" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "这些代表了你必须做的不同类别的事情(例如:\"打电话 \"或 \"发送电子邮件\")" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "缩略图" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "缩略图状态" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "提示:将你的扫描仪配置为将所有文档发送到这个地址。" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "小贴士:成为无纸化公司" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "待验证" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "‎待核准‎" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "今天" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "切换收藏" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "工具提示" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "回收站" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "垃圾管理" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "如果我们可以编辑链接的附件,则为真。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "类型" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "记录中异常活动的类型。" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "网址" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "URL %s 似乎不完整,因为它不是以 http(s):// 或 ftp:// 开头" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "URL预览图像" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "无法执行的操作。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "解锁" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "未命名的" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "取消置顶" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "上传" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"上传文件或将其拖到此处。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "上传文件请求" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "用户" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "用户访问角色" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "用户权限" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "增值税" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "已验证" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "视频" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "查看器" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "想成为一家无纸化公司吗?我们来看看Odoo文档。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "网站消息" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "网站沟通记录" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "周" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "您想如何处理剩余页面?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "哇... 几秒钟内处理了 6 个文档。
    浏览结束。现在尝试上传您自己的文档。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "您" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "不允许(取消)归档文件。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "不得固定(取消)文件夹" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "不允许更改不属于您的文件的所有权。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "您不能删除所有这些项目。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "不允许执行嵌入式操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "不允许执行此操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "不允许固定/取消固定嵌入的操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "不允许在此文件夹中写入内容。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "您可以从您的电脑上传一个文件或者复制/粘贴一个 Internet 链接到您的文件." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "您无法固定该文件夹的操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "您无法固定该文档的操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "您无法固定此类操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "您不能更新快捷方式的访问权限,只能更新其目标。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "您无法访问 folder_id。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "您无法在此特殊文件夹中创建快捷方式,或将文档移动到此特殊文件夹。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "您不能访问回收站里的文件夹。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "无法更改不属于您的文档的所有者。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "您无法删除服务器操作中使用的标签。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "您不能复制回收站中的文档。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "您不能移动回收站里的文件夹或文件。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "您不能移除该合作伙伴" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "您不能同时共享多个文档" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "您没有足够的访问权限删除这些文件。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "您无权将文件移动到该文件夹。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "您必须在特定的可写工作区才能上传文件" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "您的角色:%s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "您的个人空间。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "别名" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "字节" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "日." + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "单据" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "文档" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "例如:讨论提案" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "例如:Finance" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "例如:缺失的费用" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "例如:为了验证" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "e.g. mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "纸夹" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "文件夹、" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "所选项目" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "千字节" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "选择" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "与您分享了一份文件。
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "与您分享了一个文件夹。
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "分享者" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "与您分享这份文件:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "与您分享这个文件夹:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "状态代码:%(status)s,消息:%(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "未命名" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" URL" diff --git a/addons_extensions/documents/i18n/zh_TW.po b/addons_extensions/documents/i18n/zh_TW.po new file mode 100644 index 000000000..b24cd6297 --- /dev/null +++ b/addons_extensions/documents/i18n/zh_TW.po @@ -0,0 +1,3888 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * documents +# +# Translators: +# Tiffany Chang, 2024 +# Jeanphy , 2024 +# Wil Odoo, 2024 +# Tony Ng, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-25 09:12+0000\n" +"PO-Revision-Date: 2024-09-25 09:44+0000\n" +"Last-Translator: Tony Ng, 2024\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid " (%s locked)" +msgstr "(%s 個已鎖定)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid " Perhaps you mean to use the pin action." +msgstr "可能你想使用釘選置頂的動作?" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s (copy)" +msgstr "%s (副本)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s (remaining pages)" +msgstr "%s(剩餘頁數)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Files" +msgstr "%s 檔案" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "%s Folders" +msgstr "%s 個資料夾" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "%s documents" +msgstr "%s 個文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "%s file(s) not moved because they are locked by another user" +msgstr "%s 檔案未被移動,因為它們被另一用戶鎖定" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s new document(s) created" +msgstr "已建立 %s 個新文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "%s page(s) deleted" +msgstr "已刪除 %s 個頁面" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "%s shared with you" +msgstr "%s 已與你分享" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +". Scanned files will appear automatically in your workspace. Then, process " +"your documents in bulk with the split tool: launch user defined actions, " +"request a signature, convert to vendor bills with AI, etc." +msgstr "" +"處理收到的郵件的一個簡單方法是配置掃描儀以將PDF發送到您的工作區電子郵件。掃描的文檔將自動出現在您的工作區中。然後,使用分拆工具批量處理文檔:啟動用戶定義的動作、請求籤名、使用AI轉換為供應商賬單等。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid ".
    " +msgstr "。
    " + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 File" +msgstr "1 個檔案" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "1 Folder" +msgstr "1 個資料夾" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "1 document" +msgstr "1 個文件" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_previous +msgid "2023" +msgstr "2023" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_year_current +msgid "2024" +msgstr "2024" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "提示:成為一間無紙化公司" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Deselect this page as we plan to process all bills first." +msgstr "取消選擇此頁面,因為我們計劃先處理所有賬單。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Select this page to continue." +msgstr "選取此頁面以繼續。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "
    Powered by" +msgstr "
    官方技術支援" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Download All" +msgstr " 下載全部" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Download file" +msgstr " 下載檔案" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Preview file" +msgstr " 預覽檔案" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid " Upload" +msgstr " 上載" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid " Replace file" +msgstr " 取代檔案" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "" +"" +msgstr "" +"" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_document_res_partner_view +msgid "Documents" +msgstr "文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Related
    Record
    " +msgstr "相關
    記錄
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Requested Document" +msgstr "要求的文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "&nbsp;Documents." +msgstr " 文件。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid " Request" +msgstr "請求" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Requested Document" +msgstr "請求的文件" + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" OdooBot (odoobot@example.com) asks you to provide the following document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" 文件請求:
    \n" +" \n" +" 收件箱財務\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" OdooBot 你好!\n" +"

    \n" +" OdooBotodoobot@example.com)要求你提供以下文件:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" 收件箱財務\n" +" \n" +"
    \n" +"
    \n" +" \n" +" 備註範例文字。\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" 請在 2021-05-17 之前,向我們提供缺漏的文件。\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" 由 Odoo 文件管理 驅動\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:mail.template,body_html:documents.mail_template_document_request_reminder +msgid "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" Document Request:
    \n" +" \n" +" Inbox Financial\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" Hello OdooBot,\n" +"

    \n" +" This is a friendly reminder to upload your requested document:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" Inbox Financial\n" +" \n" +"
    \n" +"
    \n" +" \n" +" Example of a note.\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" Please provide us with the missing document before 2021-05-17.\n" +"

    \n" +" Thank you,\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" Powered by Odoo Documents\n" +"
    \n" +"
    \n" +" " +msgstr "" +"\n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" \n" +" 文件請求:
    \n" +" \n" +" 收件箱財務\n" +" \n" +"

    \n" +"
    \n" +" \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +"
    \n" +" OdooBot 你好!\n" +"

    \n" +" 提醒你,請上載被要求的文件:\n" +"

    \n" +"
    \n" +"
    \n" +" \n" +" 收件箱財務\n" +" \n" +"
    \n" +"
    \n" +" \n" +" 備註範例文字。\n" +" \n" +"
    \n" +"
    \n" +" \n" +"

    \n" +" 請在 2021-05-17 之前,向我們提供缺漏的文件。\n" +"

    \n" +" 謝謝。\n" +" \n" +"
    \n" +" --
    Mitchell Admin
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +" \n" +"
    \n" +" YourCompany\n" +"
    \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
    \n" +"
    \n" +"
    \n" +" \n" +" \n" +"
    \n" +" 由 Odoo 文件管理 驅動\n" +"
    \n" +"
    \n" +" " + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_defaults +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "當建立別名的新記錄時,一個Python字典被提供作為預設值." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "A destination is required when creating multiple shortcuts at once." +msgstr "同一時間建立多個捷徑時,需要設定目標位置。" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_folder_id_not_id +msgid "A folder cannot be included in itself" +msgstr "資料夾不可放置在自己之內" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_shortcut_document_id_not_id +msgid "A shortcut cannot point to itself" +msgstr "捷徑不可指向自己" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Access" +msgstr "存取" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Access Error" +msgstr "存取錯誤" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_token +#: model:ir.model.fields,field_description:documents.field_documents_redirect__access_token +msgid "Access Token" +msgstr "存取代碼(token)" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +msgid "Access all your documents" +msgstr "存取你的所有文件" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_access.py:0 +msgid "Access documents and partners cannot be changed." +msgstr "文件存取權限及合作夥伴不可更改。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Access to a folder or a document" +msgstr "資料夾或文件存取權限" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_document_token_unique +msgid "Access tokens already used." +msgstr "存取權杖已經使用。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_url +msgid "Access url" +msgstr "存取網址" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Action" +msgstr "動作" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction +msgid "Action Needed" +msgstr "需要採取行動" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__active +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +msgid "Active" +msgstr "啟用" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_ids +#: model:ir.ui.menu,name:documents.mail_activities +msgid "Activities" +msgstr "活動" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Activity" +msgstr "活動" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_decoration +msgid "Activity Exception Decoration" +msgstr "活動異常圖示" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_activity_plan_menu +msgid "Activity Plans" +msgstr "活動計劃" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_state +msgid "Activity State" +msgstr "活動狀態" + +#. module: documents +#: model:ir.model,name:documents.model_mail_activity_type +msgid "Activity Type" +msgstr "活動類型" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_icon +msgid "Activity Type Icon" +msgstr "活動類型圖示" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_type_action_document +#: model:ir.ui.menu,name:documents.mail_activity_type_menu +msgid "Activity Types" +msgstr "活動類型" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "" +"Activity plans are used to assign a list of activities in just a few clicks\n" +" (e.g. \"NDA signature process\", \"Workspace workflow\", ...)" +msgstr "" +"「活動計劃」用於簡易分配一系列活動,按幾下便完成。\n" +" (例如:保密協議簽名流程、工作區工作流程等)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_type_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_type_id +msgid "Activity type" +msgstr "活動類型" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Add" +msgstr "加入" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add File" +msgstr "加入文件" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_folder_form +msgid "Add Folder" +msgstr "加入資料夾" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_bill +msgid "Add Tag Bill" +msgstr "加入賬單標籤" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_add_validated +msgid "Add Tag Validated" +msgstr "加入已驗證標籤" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_url_form +msgid "Add Url" +msgstr "加入網址" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Add new file" +msgstr "加入新文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses..." +msgstr "加入用戶或電郵地址⋯" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Add people or email addresses:" +msgstr "加入人員或電郵地址:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_shortcut.js:0 +msgid "Add shortcut" +msgstr "加入捷徑" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Add star" +msgstr "加入星號" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Additional documents you have access to." +msgstr "你有權存取的其他文件。" + +#. module: documents +#: model:res.groups,name:documents.group_documents_manager +msgid "Administrator" +msgstr "管理員" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_ads +msgid "Ads" +msgstr "廣告" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_id +msgid "Alias" +msgstr "別名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_contact +msgid "Alias Contact Security" +msgstr "別名聯絡人安全" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain_id +msgid "Alias Domain" +msgstr "別名域" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_domain +msgid "Alias Domain Name" +msgstr "別名域名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_full_name +msgid "Alias Email" +msgstr "別名電子郵件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_name +msgid "Alias Name" +msgstr "別名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_status +msgid "Alias Status" +msgstr "別名狀態" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_tag_ids +msgid "Alias Tags" +msgstr "別名標籤" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_status +msgid "Alias status assessed on the last message received." +msgstr "根據最後收到的一則訊息評估的別名狀態。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_model_id +msgid "Aliased Model" +msgstr "別名的模型" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +msgid "All" +msgstr "所有" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "" +"All users with access to this %(documentType)s or its parent will have edit " +"permissions." +msgstr "所有有權存取此 %(documentType)s 類型或其母級文件的使用者,都將會擁有編輯權限。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_ids +msgid "Allowed Access" +msgstr "允許存取" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Already linked Documents: %s" +msgstr "已經連結的文件:%s" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to" +msgstr "處理傳入郵件的一種簡單方法是將掃瞄器配置為將 PDF 發送到" + +#. module: documents +#: model_terms:digest.tip,tip_description:documents.digest_tip_documents_0 +msgid "" +"An easy way to process incoming mails is to configure your scanner to send " +"PDFs to your workspace email. Scanned files will appear automatically in " +"your workspace. Then, process your documents in bulk with the split tool: " +"launch user defined actions, request a signature, convert to vendor bills " +"with AI, etc." +msgstr "" +"處理收到郵件的一個簡單方法,是將掃瞄器配置至將 PDF " +"發送到你的工作區電郵。掃瞄的文件會自動在你的工作區出現。然後,你可使用分拆工具大批處理文件:例如啟動用戶定義的操作、要求簽名、利用 AI " +"轉換為供應商賬單等。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "An error occured while uploading." +msgstr "上載時發生錯誤" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Anyone on the internet with the link can %(action)s" +msgstr "互聯網上任何擁有該連結的人,都將可 %(action)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Anyone with the link" +msgstr "任何有連結的人" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Archive original file(s)" +msgstr "封存原始文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the focused page ?" +msgstr "確定要刪除目前頁面?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete the selected page(s)" +msgstr "確定要刪除所選頁面?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Are you sure that you want to delete this page ?" +msgstr "確定要刪除此頁面?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the document?" +msgstr "確定永久清除文件?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Are you sure you want to permanently erase the documents?" +msgstr "確定永久清除這些文件?" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"As this PDF contains multiple documents, let's split and process in bulk." +msgstr "由於此 PDF 包含多個文件檔,所以讓我們分拆並批量處理吧。" + +#. module: documents +#: model:ir.model,name:documents.model_ir_attachment +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_id +msgid "Attachment" +msgstr "附件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_attachment_count +msgid "Attachment Count" +msgstr "附件數目" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__description +msgid "Attachment Description" +msgstr "附件描述" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_name +msgid "Attachment Name" +msgstr "附件名稱" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__attachment_type +msgid "Attachment Type" +msgstr "附件類型" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__available_embedded_actions_ids +msgid "Available Embedded Actions" +msgstr "可用的嵌入操作" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_bill +msgid "Bill" +msgstr "帳單" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Blank Page" +msgstr "空白頁" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_brochures +msgid "Brochures" +msgstr "宣傳冊" + +#. module: documents +#: model:ir.model.fields,help:documents.field_mail_activity_type__folder_id +msgid "By defining a folder, the upload activities will generate a document" +msgstr "通過定義資料夾,上載活動將生成一個文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Cancel" +msgstr "取消" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__checksum +msgid "Checksum/SHA1" +msgstr "校驗碼/SHA1" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__children_ids +msgid "Children" +msgstr "下級" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Choose a record to link" +msgstr "選擇一個要連結的記錄" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Choose or Configure Email Servers" +msgstr "選擇或配置電郵伺服器" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a card to select the document." +msgstr "按下卡片以選擇文件。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click on a thumbnail to preview the document." +msgstr "按下縮圖以預覽文件。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Click on the page separator: we don't want to split these two pages " +"as they belong to the same document." +msgstr "按下分頁符號:我們不想分拆這兩個頁面,因為它們屬於同一個文件。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Click the cross to exit preview." +msgstr "按一下交叉圖示,以離開預覽。" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__client_generated +msgid "Client Generated" +msgstr "客戶端產生" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close" +msgstr "關閉" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Close split tools" +msgstr "關閉分拆工具" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__color +msgid "Color" +msgstr "顏色" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Common roots for all company users." +msgstr "所有公司使用者的共同根位置。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__company_id +msgid "Company" +msgstr "公司" + +#. module: documents +#: model:ir.model,name:documents.model_res_config_settings +msgid "Config Settings" +msgstr "配置設定" + +#. module: documents +#: model:ir.ui.menu,name:documents.Config +msgid "Configuration" +msgstr "配置" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +msgid "Configure" +msgstr "設定" + +#. module: documents +#: model:ir.model,name:documents.model_res_partner +#: model:ir.model.fields,field_description:documents.field_documents_document__partner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__partner_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Contact" +msgstr "聯絡人" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_contracts +msgid "Contracts" +msgstr "合約" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Control panel buttons" +msgstr "控制面板按鈕" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Copy Link" +msgstr "複製連結" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Copy Links" +msgstr "複製連結" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_create_activity +msgid "Create Activity" +msgstr "創建活動" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Create Shortcut" +msgstr "建立捷徑" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_plan_action_document +msgid "Create a Document Activity Plan" +msgstr "建立文件活動計劃" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_option +msgid "Create a new activity" +msgstr "建立新‎‎活動" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create and edit new contact \"" +msgstr "建立並編輯新聯絡人「" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Create new contact \"" +msgstr "建立新聯絡人「" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_uid +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Created by" +msgstr "建立人員" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__create_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__create_date +msgid "Created on" +msgstr "建立於" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Creation Date" +msgstr "建立日期" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_bounced_content +msgid "Custom Bounced Message" +msgstr "自訂彈回訊息" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__days +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__days +msgid "Days" +msgstr "天內" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_defaults +msgid "Default Values" +msgstr "預設值" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__deletion_delay +#: model:ir.model.fields,help:documents.field_res_config_settings__deletion_delay +msgid "Delay after permanent deletion of the document in the trash (days)" +msgstr "文件移至垃圾桶後,永久刪除前的等待時間(天)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Delete" +msgstr "刪除" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Delete focused or selected pages" +msgstr "刪除目前或所選頁面" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Delete permanently" +msgstr "永久刪除" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_res_config_settings__deletion_delay +msgid "Deletion Delay" +msgstr "刪除延遲" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__deletion_delay +msgid "Deletion delay" +msgstr "刪除延遲" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Deletion delay (days)" +msgstr "刪除延遲(天)" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_deprecated +msgid "Deprecated" +msgstr "已棄用" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_details.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Details" +msgstr "詳細資訊" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Discard" +msgstr "捨棄" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__display_name +#: model:ir.model.fields,field_description:documents.field_documents_document__display_name +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_redirect__display_name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__display_name +#: model:ir.model.fields,field_description:documents.field_documents_tag__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Do you want to exit without saving or gather pages into one document ?" +msgstr "確定不儲存並退出,還是將頁面合併至一個文件?" + +#. module: documents +#: model:ir.model,name:documents.model_documents_document +#: model:ir.model.fields,field_description:documents.field_documents_access__document_id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__document_id +#: model:ir.model.fields,field_description:documents.field_documents_tag__document_ids +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document" +msgstr "文件" + +#. module: documents +#: model:ir.model,name:documents.model_documents_access +msgid "Document / Partner" +msgstr "文件 / 合作夥伴" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Internal" +msgstr "內部文件存取" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Document Access Link" +msgstr "文件存取連結" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_count +#: model:ir.model.fields,field_description:documents.field_res_partner__document_count +msgid "Document Count" +msgstr "文件數" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Document Name" +msgstr "單據名稱" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_activity_plan_action_document +msgid "Document Plans" +msgstr "文件計劃" + +#. module: documents +#: model:ir.model,name:documents.model_documents_redirect +msgid "Document Redirect" +msgstr "文件重新導向" + +#. module: documents +#: model:ir.model,name:documents.model_documents_request_wizard +msgid "Document Request" +msgstr "‎文件請求‎" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request +msgid "" +"Document Request {{ object.name != False and ': '+ object.name or '' }}" +msgstr "‎文件請求‎ {{ object.name != False and ':'+ object.name or '' }}." + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/mail_activity.py:0 +msgid "Document Request: %(name)s Uploaded by: %(user)s" +msgstr "文件請求:%(name)s,上載者:%(user)s" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request_reminder +msgid "Document Request: Reminder" +msgstr "‎文件請求‎:提醒" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__document_token +msgid "Document Token" +msgstr "文件權杖" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Document preview" +msgstr "文件預覽" + +#. module: documents +#. odoo-python +#: code:addons/documents/controllers/documents.py:0 +msgid "Document uploaded by %(user)s" +msgstr "文件由 %(user)s 上載" + +#. module: documents +#: model:mail.template,name:documents.mail_template_document_request +msgid "Document: Document Request" +msgstr "文件:文件請求" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/document_count_field.js:0 +msgid "DocumentCountIntegerField" +msgstr "DocumentCountIntegerField" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: code:addons/documents/models/res_partner.py:0 +#: model:ir.actions.act_window,name:documents.document_action +#: model:ir.actions.act_window,name:documents.document_action_portal +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__document_ids +#: model:ir.model.fields,field_description:documents.field_res_users__document_count +#: model:ir.ui.menu,name:documents.dashboard +#: model:ir.ui.menu,name:documents.menu_root +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +#: model_terms:ir.ui.view,arch_db:documents.documents_view_activity +#: model_terms:ir.ui.view,arch_db:documents.portal_my_home_documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Documents" +msgstr "文件" + +#. module: documents +#: model:ir.model,name:documents.model_documents_link_to_record_wizard +msgid "Documents Link to Record" +msgstr "文件連結至記錄" + +#. module: documents +#: model:ir.model,name:documents.model_documents_mixin +msgid "Documents creation mixin" +msgstr "文件建立混入程式" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Documents in the Trash cannot be shared" +msgstr "垃圾桶內的文件無法分享" + +#. module: documents +#: model:ir.model,name:documents.model_documents_unlink_mixin +msgid "Documents unlink mixin" +msgstr "文件取消連結混入程式" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Done" +msgstr "完成" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Done!" +msgstr "完成!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_download.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Download" +msgstr "下載" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download #{document.name}" +msgstr "下載 #{document.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download all files" +msgstr "下載所有文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Download file" +msgstr "下載檔案" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download folder as zip" +msgstr "下載資料夾為 zip" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Download zip #{subfolder.name}" +msgstr "下載 zip 檔案:#{subfolder.name}" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_draft +msgid "Draft" +msgstr "草稿" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "Drop files here to upload" +msgstr "拖放文件到此處以上載" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range +msgid "Due Date In" +msgstr "截止日期至" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_date_deadline_range_type +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_date_deadline_range_type +msgid "Due type" +msgstr "截止類型" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Duplicate" +msgstr "複製" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_configure.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Edit" +msgstr "編輯" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__edit +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__edit +msgid "Editor" +msgstr "編輯" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_email +msgid "Email Alias" +msgstr "郵箱別名" + +#. module: documents +#: model:ir.ui.menu,name:documents.mail_alias_menu +msgid "Email Aliases" +msgstr "電郵別名" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "Email Upload" +msgstr "電郵上載" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__email_cc +msgid "Email cc" +msgstr "電郵副本抄送" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_domain +msgid "Email domain e.g. 'example.com' in 'odoo@example.com'" +msgstr "電子郵件網域,例如 odoo@example.com 之內的「example.com」" + +#. module: documents +#: model:ir.actions.act_window,name:documents.mail_alias_action +msgid "Email links" +msgstr "電郵連結" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__error +msgid "Error" +msgstr "錯誤" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Escape Preview/Deselect/Exit" +msgstr "退出預覽 / 取消選擇 / 離開" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit Split Tools" +msgstr "離開分拆工具" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Exit without saving" +msgstr "離開時不儲存" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "Exp:" +msgstr "到期:" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_expense +msgid "Expense" +msgstr "費用" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__expiration_date +msgid "Expiration" +msgstr "截止日期" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/list/documents_list_controller.js:0 +msgid "Export" +msgstr "匯出" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Extra comments..." +msgstr "額外評論⋯" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__favorited_ids +msgid "Favorite of" +msgstr "最愛:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__binary +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "File" +msgstr "文件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__datas +msgid "File Content (base64)" +msgstr "檔案內容 (base64)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__raw +msgid "File Content (raw)" +msgstr "檔案內容 (raw)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_extension +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "File Extension" +msgstr "副檔名" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__file_size +msgid "File Size" +msgstr "文件大小" + +#. module: documents +#: model:ir.model,name:documents.model_ir_binary +msgid "File streaming helper model for controllers" +msgstr "控制器檔案串流輔助模型" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +msgid "Files" +msgstr "文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Files Centralization" +msgstr "檔案集中處理" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Files will be sent to trash and deleted forever after" +msgstr "檔案會被傳送至垃圾桶,並在此時間後永久刪除:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Files will be sent to trash and deleted forever after %s days." +msgstr "檔案會被傳送至垃圾桶,並在 %s 天後永久刪除。" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_financial +msgid "Financial" +msgstr "財務" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_fiscal +msgid "Fiscal" +msgstr "財務" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of next group" +msgstr "移至下一組第一頁" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus first page of previous group" +msgstr "移至前一組第一頁" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus next page" +msgstr "移至下一頁" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Focus previous page" +msgstr "移至上一頁" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__folder_id +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__folder_id +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__folder +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "Folder" +msgstr "資料夾" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Folders" +msgstr "資料夾" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_follower_ids +msgid "Followers" +msgstr "關注人" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_partner_ids +msgid "Followers (Partners)" +msgstr "關注人(業務夥伴)" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_type_icon +msgid "Font awesome icon e.g. fa-tasks" +msgstr "Font awesome 圖示,例如,fa-task" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Gather in one document" +msgstr "匯集至一個文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "General" +msgstr "一般" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "General access" +msgstr "一般存取權限" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "GiB" +msgstr "GiB" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Group By" +msgstr "分組依據" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_hr +msgid "HR" +msgstr "人力資源" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__has_message +msgid "Has Message" +msgstr "有訊息" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Hide shortcuts" +msgstr "隱藏捷徑" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__previous_attachment_ids +msgid "History" +msgstr "歷史" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_model.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "Home" +msgstr "主頁" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__id +#: model:ir.model.fields,field_description:documents.field_documents_document__id +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_redirect__id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__id +#: model:ir.model.fields,field_description:documents.field_documents_tag__id +msgid "ID" +msgstr "識別號" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_thread_id +msgid "" +"ID of the parent record holding the alias (example: project holding the task" +" creation alias)" +msgstr "上級記錄ID支援別名(例如:專案支援任務建立別名)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_exception_icon +msgid "Icon" +msgstr "圖示" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_icon +msgid "Icon to indicate an exception activity." +msgstr "用於指示異常活動的圖示。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_access_via_link_hidden +msgid "" +"If \"True\", only people given direct access to this document will be able " +"to view it. If \"False\", access with the link also given to all who can " +"access the parent folder." +msgstr "若為 True(真),只有能夠直接存取此文件的人員,才可查看。若為 False(假),也會向所有可以存取母級資料夾的人,授予連結存取權限。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction +msgid "If checked, new messages require your attention." +msgstr "勾選代表有新訊息需要您留意。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error +#: model:ir.model.fields,help:documents.field_documents_document__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "勾選代表有訊息發生傳送錯誤。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_bounced_content +msgid "" +"If set, this content will automatically be sent out to unauthorized users " +"instead of the default message." +msgstr "設置後,此內容將自動發送給未經授權的用戶,而不是默認訊息。" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_images +msgid "Images" +msgstr "圖片" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to delete folders used by other applications." +msgstr "無法刪除其他應用程式使用的資料夾。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Impossible to invite partners on multiple documents at once." +msgstr "不可同時在多個文件上邀請合作夥伴。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Impossible to move the following items as this would create a recursive hierarchy:\n" +"- %(documents)s" +msgstr "" +"無法移動以下項目,因為會造成循環層級結構:\n" +"- %(documents)s" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__restricted +msgid "Inaccessible" +msgstr "不可存取" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_inbox +#: model:mail.activity.type,name:documents.mail_documents_activity_data_Inbox +msgid "Inbox" +msgstr "收件箱" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Incorrect values. Use one of the following for the following fields: " +"%(hints)s.)" +msgstr "數值不正確。請在以下欄位使用以下選項之一:%(hints)s。)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__index_content +msgid "Indexed Content" +msgstr "索引的內容" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.xml:0 +msgid "Internal Users" +msgstr "內部使用者" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_internal +msgid "Internal Users Rights" +msgstr "內部使用者權限" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Internal users can %(action)s" +msgstr "內部使用者可 %(action)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid folder id" +msgstr "資料夾識別碼無效" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Invalid operation" +msgstr "操作無效" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Invalid role." +msgstr "角色無效。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_editable_attachment +msgid "Is Editable Attachment" +msgstr "是可編輯附件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_favorited +msgid "Is Favorited" +msgstr "已被加入最愛" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_is_follower +msgid "Is Follower" +msgstr "是關注人" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_multipage +msgid "Is considered multipage" +msgstr "視為多頁" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"It is not possible to move archived documents or documents to archived " +"folders." +msgstr "不可移動已封存的文件,或將任何文件移至已封存的資料夾。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Item(s) you wish to restore are included in archived folders. To restore these items, you must restore the following including folders instead:\n" +"- %(folders_list)s" +msgstr "" +"你想還原的項目,存放在已封存資料夾中。要還原這些項目,必須還原裝載它們的資料夾,詳列如下:\n" +"- %(folders_list)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Items in trash will be deleted forever after %s days." +msgstr "垃圾桶中的項目會在 %s 天後永久刪除。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Items moved to the trash will be deleted forever after %s days." +msgstr "移至垃圾桶的項目會在 %s 天後永久刪除。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__last_access_date +#: model:ir.model.fields,field_description:documents.field_documents_document__last_access_date_group +msgid "Last Accessed On" +msgstr "上次存取" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_uid +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_uid +msgid "Last Updated by" +msgstr "最後更新者" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__write_date +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__write_date +#: model:ir.model.fields,field_description:documents.field_documents_tag__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_legal +msgid "Legal" +msgstr "法律" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's process documents in your Inbox.
    Tip: Use Tags to filter " +"documents and structure your process." +msgstr "讓我們處理收件箱中的文件。
    提示:使用標籤以篩選文件並組織流程。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process these bills: send to Finance workspace." +msgstr "讓我們處理這些賬單:發送到財務工作區。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Let's process this document, coming from our scanner." +msgstr "讓我們處理這個文件,由我們的掃瞄器開始。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Let's tag this mail as legal
    Tips: actions can be tailored to your " +"process, according to the workspace." +msgstr "讓我們把這封郵件標記為法律法件。
    提示:根據工作空間,動作可以根據你的流程進行調整。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_link_to_record_form_view +msgid "Link" +msgstr "連結" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_access_via_link_hidden +msgid "Link Access Hidden" +msgstr "隱藏連結存取" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__access_via_link +msgid "Link Access Rights" +msgstr "連結存取權限" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url +msgid "Link URL" +msgstr "連結網址" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Link copied to clipboard!" +msgstr "連結已複製到剪貼板!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Link copied to the clipboard." +msgstr "連結已複製至剪貼簿。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Links copied to clipboard!" +msgstr "連結已複製至剪貼簿。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_incoming_local +msgid "Local-part based incoming detection" +msgstr "基於本地部件的來件檢測" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Lock" +msgstr "鎖定" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_locked +msgid "Locked" +msgstr "已鎖定" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__lock_uid +msgid "Locked by" +msgstr "鎖定者" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Log a note..." +msgstr "寫下備註⋯" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Login" +msgstr "登入" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Logout" +msgstr "登出" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Mail: %s" +msgstr "郵件:%s" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_activities +msgid "Mark activities as completed" +msgstr "將活動標記為已完成" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Merge PDFs" +msgstr "合併 PDF" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__activity_note +msgid "Message" +msgstr "訊息" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error +msgid "Message Delivery error" +msgstr "訊息遞送錯誤" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_ids +msgid "Messages" +msgstr "訊息" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "MiB" +msgstr "MiB" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__mimetype +msgid "Mime Type" +msgstr "MIME 類型" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Missing documents reference." +msgstr "缺漏文件參考。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__model_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Model" +msgstr "模型" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__accessible_model_ids +msgid "Models" +msgstr "型號" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__months +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__months +msgid "Months" +msgstr "月" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Move this page to trash" +msgstr "將此頁移至垃圾桶" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Move to Trash" +msgstr "移至垃圾桶" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_archive.js:0 +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/hooks.js:0 +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "Move to trash" +msgstr "移至垃圾桶" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +msgid "Move to trash?" +msgstr "移至垃圾桶?" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Moved to trash" +msgstr "已移至垃圾箱" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_kanban +msgid "Must have the link to access" +msgstr "必須有存取連結" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Activities" +msgstr "我的活動" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__my_activity_date_deadline +msgid "My Activity Deadline" +msgstr "我的活動截止時間" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "My Documents" +msgstr "我的文件" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "My Drive" +msgstr "我的雲端硬碟" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_role_or_last_access_date +msgid "NULL roles must have a set last_access_date" +msgstr "NULL 角色必須設定 last_access_date" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__name +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__name +#: model:ir.model.fields,field_description:documents.field_documents_tag__name +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Name" +msgstr "名稱" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Name / Extension" +msgstr "名稱/副檔名" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "New" +msgstr "新增" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New File" +msgstr "新增文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "New Folder" +msgstr "新資料夾" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "New Group" +msgstr "新增組別" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_calendar_event_id +msgid "Next Activity Calendar Event" +msgstr "下一個活動日曆事件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_date_deadline +msgid "Next Activity Deadline" +msgstr "下一活動截止日期" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_summary +msgid "Next Activity Summary" +msgstr "下一活動摘要" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_type_id +msgid "Next Activity Type" +msgstr "下一活動類型" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "No activity types found. Let's create one!" +msgstr "找不到活動類型。讓我們創建一個吧!" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "No alias configured" +msgstr "未設置別名" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "No document has been selected" +msgstr "未選取文件" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "No item selected" +msgstr "未有選取項目" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "No one on the internet can access" +msgstr "互聯網上任何人都不可存取" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_alias_action +msgid "No shared links" +msgstr "沒有共享連結" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__none +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__none +msgid "None" +msgstr "無" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a file" +msgstr "不是檔案" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not a folder." +msgstr "不是資料夾。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Not attached" +msgstr "未有附件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_note +msgid "Note" +msgstr "備註" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Notify" +msgstr "通知" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_needaction_counter +msgid "Number of Actions" +msgstr "動作數量" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_error_counter +msgid "Number of errors" +msgstr "錯誤數量" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "需要採取行動的訊息數目" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "有發送錯誤的郵件數量" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Logo" +msgstr "Odoo 標誌" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_page_layout +msgid "Odoo Website" +msgstr "Odoo 網站" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__0_older +msgid "Older" +msgstr "過時" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can create in company folder." +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can pin folders." +msgstr "只限文件管理員才可釘選資料夾。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents Managers can set aliases." +msgstr "只限文件管理員才可設定別名。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only Documents managers can set an alias." +msgstr "只限文件管理員才可設定別名。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Only OdooBot-owned root folders can be pinned." +msgstr "只限由 OdooBot 擁有的根級資料夾才可釘選。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_settings.js:0 +msgid "Only people with access can open with the link" +msgstr "只限擁有存取權限的人,才可使用該連結開啟" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open #{document_url.name}" +msgstr "開啟 #{document_url.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Open folder #{subfolder.name}" +msgstr "開啟資料夾 #{subfolder.name}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Open the permissions panel" +msgstr "開啟權限面板" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Move to Trash\" / `action_archive` " +"instead." +msgstr "不支援此操作。請改用「移至垃圾箱」/ `action_archive`。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"Operation not supported. Please use \"Restore\" / `action_unarchive` " +"instead." +msgstr "不支援此操作。請改用「還原」/ `action_unarchive`。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_force_thread_id +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "所有的進來的信件都將附上一條潛在商機(記錄)選配的ID,即使它們不曾回覆過它。如果設定了,這個將完全阻止新記錄的建立。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.js:0 +msgid "Optional message..." +msgstr "可選填訊息⋯" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Or send emails to" +msgstr "或發送電郵至" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_other +msgid "Other" +msgstr "其他" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__owner_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__requestee_id +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Owner" +msgstr "所有者" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document.owner_id.name}" +msgstr "擁有人: #{document.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{document_url.owner_id.name}" +msgstr "擁有人:#{document_url.owner_id.name}" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Owner: #{subfolder.owner_id.name}" +msgstr "擁有人:#{subfolder.owner_id.name}" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__folder_id +msgid "Parent Folder" +msgstr "上級檔案夾" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_model_id +msgid "Parent Model" +msgstr "母級模型" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__parent_path +msgid "Parent Path" +msgstr "母級路徑" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_parent_thread_id +msgid "Parent Record Thread ID" +msgstr "上級記錄線程ID" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_parent_model_id +msgid "" +"Parent model holding the alias. The model holding the alias reference is not" +" necessarily the model given by alias_model_id (example: project " +"(parent_model) and task (model))" +msgstr "" +"載有該別名的母項模型。載有別名參照的模型,不一定是 alias_model_id 提供的模型,例如:專案(parent_model)與任務(model)" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Partial transfer" +msgstr "部份轉移" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__partner_id +msgid "Partner" +msgstr "業務夥伴" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "People with access" +msgstr "有存取權限的人" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Pin" +msgstr "置頂固定" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__is_pinned_folder +msgid "Pinned to Company roots" +msgstr "置頂於公司根級資料夾" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "" +"Please login or contact the person that shared this link for more " +"information." +msgstr "請登入或聯絡向你分享此連結的人,以獲取更多資訊。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_contact +msgid "" +"Policy to post a message on the document using the mailgateway.\n" +"- everyone: everyone can post\n" +"- partners: only authenticated partners\n" +"- followers: only followers of the related document or members of following channels\n" +msgstr "" +"通過信件網關在文件上提交一個訊息政策。\n" +"- 任何人:任何人都可以提交\n" +"- 合作夥伴:只有認證過的合作夥伴\n" +"- 跟隨者:只有相關文件或下列頻道成員的跟隨者\n" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__thumbnail_status__present +msgid "Present" +msgstr "現在" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_presentations +msgid "Presentations" +msgstr "展示" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Preview files" +msgstr "預覽檔案" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_project +msgid "Project" +msgstr "專案" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__rating_ids +msgid "Ratings" +msgstr "評分" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recent" +msgstr "最近" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Recently accessed documents." +msgstr "最近被存取的文件。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__resource_ref +msgid "Record" +msgstr "記錄" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__alias_force_thread_id +msgid "Record Thread ID" +msgstr "記錄追蹤ID" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Remaining Pages" +msgstr "剩餘頁數" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/activity/documents_activity_controller.js:0 +msgid "Reminder emails have been sent." +msgstr "已發送提醒郵件。" + +#. module: documents +#: model:mail.template,subject:documents.mail_template_document_request_reminder +msgid "" +"Reminder to upload your document{{ object.name and ' : ' + object.name or ''" +" }}" +msgstr "提醒上載文件{{ object.name and ':' + object.name or '' }}" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Access" +msgstr "移除存取權限" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "Remove Member" +msgstr "移除成員" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_inbox +msgid "Remove Tag Inbox" +msgstr "移除標籤收件箱" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_tag_remove_to_validate +msgid "Remove Tag To Validate" +msgstr "移除標籤以進行驗證" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_remove_tags +msgid "Remove all tags" +msgstr "移除所有標籤" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_star.js:0 +msgid "Remove star" +msgstr "移除星號" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_rename.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Rename" +msgstr "重新命名" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request" +msgstr "請求" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__request_activity_id +msgid "Request Activity" +msgstr "請求活動" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "Request To" +msgstr "請求要" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/activity/activity_menu_patch.xml:0 +msgid "Request a Document" +msgstr "請求文件" + +#. module: documents +#: model:ir.actions.act_window,name:documents.action_request_form +msgid "Request a file" +msgstr "請求文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"Requested\n" +" ∙" +msgstr "" +"已要求\n" +" 。" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_md +msgid "Requested Document" +msgstr "已請求文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Requested Documents" +msgstr "請求的文件" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__requestee_partner_id +msgid "Requestee Partner" +msgstr "收取請求者的合作夥伴" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model_name +msgid "Res Model Name" +msgstr "資源模型名稱" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_id +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_id +msgid "Resource ID" +msgstr "資源識別碼" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_model +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__res_model +msgid "Resource Model" +msgstr "資源模型" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__res_name +msgid "Resource Name" +msgstr "資源名稱" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_user_id +msgid "Responsible" +msgstr "負責人" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__activity_user_id +msgid "Responsible User" +msgstr "責任使用者" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/form/folder_form_controller.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Restore" +msgstr "還原" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted" +msgstr "受限制" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Restricted Folder" +msgstr "受限制資料夾" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Revert changes" +msgstr "還原變更" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_access__role +msgid "Role" +msgstr "角色" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__message_has_sms_error +msgid "SMS Delivery error" +msgstr "簡訊發送錯誤" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_sales +msgid "Sales" +msgstr "銷售" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Save" +msgstr "儲存" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Save or discard changes first" +msgstr "請先儲存或捨棄變更" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml:0 +msgid "Saving..." +msgstr "儲存中⋯" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +#: code:addons/documents/static/src/views/list/documents_list_renderer.js:0 +msgid "Select all" +msgstr "全選" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select focused page" +msgstr "選取目前頁面" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next page" +msgstr "選取下一頁" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select next pages of the group" +msgstr "選擇組別的下一頁" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous page" +msgstr "選取前一頁" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select previous pages of the group" +msgstr "選擇組別的前一頁" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Select/Deselect all pages" +msgstr "選擇/取消選擇所有頁面" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Send" +msgstr "傳送" + +#. module: documents +#: model:ir.actions.server,name:documents.ir_actions_server_send_to_finance +msgid "Send To Finance" +msgstr "傳送至財務" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "Send this letter to the legal department, by assigning the right tags." +msgstr "通過分配正確的標籤,把這封信寄到法律部門。" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request +msgid "Sent to partner when requesting a document from them" +msgstr "在向合作夥伴索取文件時發送給他們" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__sequence +msgid "Sequence" +msgstr "序列" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.xml:0 +msgid "Set actions" +msgstr "設定動作" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Set deletion delay for documents in the Trash" +msgstr "設置刪除垃圾桶文件的延遲時間" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml:0 +msgid "Set expiration date" +msgstr "設定到期日" + +#. module: documents +#: model:mail.template,description:documents.mail_template_document_request_reminder +msgid "" +"Set reminders in activities to notify users who didn't upload their " +"requested document" +msgstr "在活動中設置提醒,通知未上載所需文件的用戶" + +#. module: documents +#: model:ir.actions.act_window,name:documents.configuration_action +#: model:ir.actions.act_window,name:documents.settings_action +#: model:ir.ui.menu,name:documents.settings_menu +msgid "Settings" +msgstr "設定" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_item_share.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "Share" +msgstr "分享" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "Share: %(documentName)s" +msgstr "分享:%(documentName)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shared with me" +msgstr "向我分享" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +msgid "Sharing..." +msgstr "分享中⋯" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_type_icon/documents_type_icon.xml:0 +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_ids +msgid "Shortcut" +msgstr "快捷方式" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "Shortcut created" +msgstr "已建立捷徑" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcut created in My Drive" +msgstr "已在我的雲端硬碟中建立捷徑" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/core/document_service.js:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.js:0 +msgid "Shortcuts can only be created one at a time." +msgstr "每次只可建立一個捷徑。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot change target document." +msgstr "捷徑不可更改目標文件。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Shortcuts cannot contain documents." +msgstr "捷徑不可包含文件。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.share_file +msgid "Size:" +msgstr "尺寸:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "Some files could not be uploaded (max size: %s)." +msgstr "部份檔案未能上載(大小上限:%s)。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__shortcut_document_id +msgid "Source Document" +msgstr "來源單據" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "Special folders cannot be shared" +msgstr "特殊資料夾不可分享" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split" +msgstr "分拆" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/attachments/document_file_viewer.xml:0 +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +msgid "Split PDF" +msgstr "分拆 PDF" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "Split all white pages" +msgstr "分拆所有白頁" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.xml:0 +msgid "Split selected pages" +msgstr "分拆已選頁面" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Starred" +msgstr "星標信件" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_state +msgid "" +"Status based on activities\n" +"Overdue: Due date is already passed\n" +"Today: Activity date is today\n" +"Planned: Future activities." +msgstr "" +"根據活動的狀態 \n" +" 逾期:已經超過截止日期 \n" +" 現今:活動日期是當天 \n" +" 計劃:未來活動。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "Stay here" +msgstr "留在此頁" + +#. module: documents +#: model:ir.ui.menu,name:documents.structure +msgid "Structure" +msgstr "結構" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__create_activity_summary +msgid "Summary" +msgstr "摘要" + +#. module: documents +#: model:res.groups,name:documents.group_documents_system +msgid "System Administrator" +msgstr "" + +#. module: documents +#: model:ir.model,name:documents.model_documents_tag +#: model:ir.model.fields,field_description:documents.field_mail_activity_type__tag_ids +#: model_terms:ir.ui.view,arch_db:documents.tag_view_search +msgid "Tag" +msgstr "標籤" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tag Name" +msgstr "標籤名稱" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_tag_tag_name_unique +msgid "Tag name already used" +msgstr "標籤名稱已被使用" + +#. module: documents +#: model:ir.actions.act_window,name:documents.tag_action +#: model:ir.model.fields,field_description:documents.field_documents_document__tag_ids +#: model:ir.model.fields,field_description:documents.field_documents_request_wizard__tag_ids +#: model:ir.ui.menu,name:documents.category_menu +msgid "Tags" +msgstr "標籤" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_text +msgid "Text" +msgstr "文字" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_tag__tooltip +msgid "Text shown when hovering on this tag" +msgstr "滑鼠停在此標籤時顯示的文字" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_res_config_settings_check_deletion_delay +msgid "The deletion delay should be positive." +msgstr "刪除延遲應為正數。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.js:0 +#: code:addons/documents/static/src/web/error_dialog/error_dialog_patch.xml:0 +msgid "The document URL has been copied to your clipboard." +msgstr "文件網址已複製至剪貼板。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "The document has been moved." +msgstr "該文件已被移動。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents can't have alias: \n" +"- %(records)s" +msgstr "" +"以下文件不可有別名:\n" +"- %(records)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"The following documents/folders can't be owned by a Portal User: \n" +"- %(partners)s" +msgstr "" +"以下文件/資料夾不可由門戶網站使用者擁有:\n" +"- %(partners)s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a company mismatch: \n" +msgstr "" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following documents/shortcuts have a type mismatch: \n" +msgstr "以下文件/捷徑的類型不相符:\n" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "The following shortcuts cannot be set as documents parents: \n" +msgstr "以下捷徑不可設為文件母項:\n" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_model_id +msgid "" +"The model (Odoo Document Kind) to which this alias corresponds. Any incoming" +" email that does not reply to an existing record will cause the creation of " +"a new record of this model (e.g. a Project Task)" +msgstr "" +"相應於這個別名對應的模型(Odoo單據種類)。任何一封不屬於對某個已存在的記錄的到來信件,將導致此模組中新記錄的建立(例如,一個新專案任務)。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__alias_name +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "信件別名的名稱,例如,如果您要收取 的電子信件,別名就要被設為:\"jobs\"" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__1_month +msgid "This Month" +msgstr "本月" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__2_week +msgid "This Week" +msgstr "本週" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This action does not exist." +msgstr "此動作不存在。" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_document_attachment_unique +msgid "This attachment is already a document" +msgstr "此附件已是文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.not_available +msgid "This document does not exist or is not publicly available." +msgstr "此文件不存在,或未有公開提供。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_request_page +msgid "" +"This document has been requested.\n" +" Upload it." +msgstr "" +"已要求提供此文件。\n" +" 上載。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This document has been restored." +msgstr "此文件已恢復。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"This file has been sent to the trash and will be deleted forever on the %s" +msgstr "檔案已傳送至垃圾桶,將在 %s 永久刪除。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "This folder does not exist." +msgstr "此資料夾不存在。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.xml:0 +msgid "This is a shortcut" +msgstr "這是一個捷徑" + +#. module: documents +#: model:ir.model.constraint,message:documents.constraint_documents_access_unique_document_access_partner +msgid "This partner is already set on this document." +msgstr "此文件已有設置此合作夥伴。" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.mail_activity_type_action_document +msgid "" +"Those represent the different categories of things you have to do (e.g. " +"\"Call\" or \"Send email\")." +msgstr "這些代表你必須做的不同類別的事情(例如「打電話」或「發送電子郵件」)" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail +msgid "Thumbnail" +msgstr "縮圖" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__thumbnail_status +msgid "Thumbnail Status" +msgstr "縮圖狀態" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_action_helper.xml:0 +msgid "Tip: configure your scanner to send all documents to this address." +msgstr "提示:將你的掃瞄器配置為將所有文件發送到這個地址。" + +#. module: documents +#: model:digest.tip,name:documents.digest_tip_documents_0 +msgid "Tip: Become a paperless company" +msgstr "小提示:成為無紙化公司" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_to_validate +msgid "To Validate" +msgstr "待驗證" + +#. module: documents +#: model:mail.activity.type,name:documents.mail_documents_activity_data_tv +msgid "To validate" +msgstr "待驗證" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__last_access_date_group__3_day +msgid "Today" +msgstr "今天" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/kanban/documents_kanban_renderer.js:0 +msgid "Toggle favorite" +msgstr "切換最愛" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_tag__tooltip +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "Tooltip" +msgstr "工具提示" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Trash" +msgstr "垃圾桶" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.res_config_settings_view_form +msgid "Trash Management" +msgstr "垃圾管理" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__is_editable_attachment +msgid "True if we can edit the link attachment." +msgstr "如果我們可以編輯連結的附件,則為 true(真)。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__type +#: model_terms:ir.ui.view,arch_db:documents.document_view_search +msgid "Type" +msgstr "類型" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__activity_exception_decoration +msgid "Type of the exception activity on record." +msgstr "記錄的異常活動的類型。" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__type__url +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "URL" +msgstr "網址" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"URL %s does not seem complete, as it does not begin with http(s):// or " +"ftp://" +msgstr "網址 %s 似乎不完整,因它不是以 http(s):// 或 ftp:// 開頭" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__url_preview_image +msgid "URL Preview Image" +msgstr "網址預覽圖片" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Unavailable action." +msgstr "操作不可用。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_control_panel.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unlock" +msgstr "解鎖" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "Unnamed" +msgstr "未命名的" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "Unpin" +msgstr "取消置頂" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "Upload" +msgstr "上載圖片" + +#. module: documents +#: model_terms:ir.actions.act_window,help:documents.document_action +#: model_terms:ir.actions.act_window,help:documents.document_action_portal +msgid "" +"Upload a file or drag it here." +msgstr "" +"上載文件或將其拖放此處。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/mail_activity.py:0 +msgid "Upload file request" +msgstr "上載檔案請求" + +#. module: documents +#: model:ir.model,name:documents.model_res_users +#: model:res.groups,name:documents.group_documents_user +msgid "User" +msgstr "使用者" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_member_invite.xml:0 +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "User Access Role" +msgstr "使用者存取角色" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__user_permission +msgid "User permission" +msgstr "使用者權限" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_vat +msgid "VAT" +msgstr "增值稅" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_validated +msgid "Validated" +msgstr "已驗證" + +#. module: documents +#: model:documents.tag,name:documents.documents_tag_videos +msgid "Videos" +msgstr "影片" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +#: model:ir.model.fields.selection,name:documents.selection__documents_access__role__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_internal__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__access_via_link__view +#: model:ir.model.fields.selection,name:documents.selection__documents_document__user_permission__view +msgid "Viewer" +msgstr "查看者" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/js/tours/documents.js:0 +msgid "" +"Want to become a paperless company? Let's discover Odoo Documents." +msgstr "想成為一家無紙化公司嗎?我們來看看Odoo文檔。" + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_document__website_message_ids +msgid "Website Messages" +msgstr "網站資訊" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__website_message_ids +msgid "Website communication history" +msgstr "網站溝通記錄" + +#. module: documents +#: model:ir.model.fields.selection,name:documents.selection__documents_document__create_activity_date_deadline_range_type__weeks +#: model:ir.model.fields.selection,name:documents.selection__documents_request_wizard__activity_date_deadline_range_type__weeks +msgid "Weeks" +msgstr "星期" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_exit_dialog/pdf_exit_dialog.xml:0 +msgid "What do you want to do with the remaining pages ?" +msgstr "您想如何處理剩餘頁面?" + +#. module: documents +#: model_terms:web_tour.tour,rainbow_man_message:documents.documents_tour +msgid "" +"Wow... 6 documents processed in a few seconds, You're good.
    The tour is " +"complete. Try uploading your own documents now." +msgstr "嘩!幾秒鐘便處理了 6 個文件,你真棒!
    導覽完成,現在嘗試上載你自己的文件吧。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_partner_access.xml:0 +msgid "You" +msgstr "你" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)archive documents." +msgstr "你沒有權限封存或取消封存文件。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to (un)pin folders" +msgstr "你沒有權限釘選或取消釘選資料夾。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to change ownerships of documents you do not own." +msgstr "你沒有權限更改不屬於你的文件的擁有人。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to delete all these items." +msgstr "你不可刪除所有這些項目。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to execute embedded actions." +msgstr "你沒有權限執行嵌入式操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to perform this operation." +msgstr "你沒有權限執行此操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to pin/unpin embedded Actions." +msgstr "你不可釘選/取消釘選嵌入操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You are not allowed to write in this folder." +msgstr "你沒有權限在此資料夾中進行寫入。" + +#. module: documents +#: model:ir.model.fields,help:documents.field_documents_document__attachment_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "您可以從您的電腦上傳一個檔案或者'複製/貼上'一個網路連結到您的檔案。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot copy in that folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You cannot move request in the company folder" +msgstr "" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/cog_menu/documents_cog_menu_pin_actions.js:0 +msgid "You can not pin actions for that folder." +msgstr "你不可為該資料夾釘選操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping an action on that document." +msgstr "你不可為該文件釘選操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can not ping that type of action." +msgstr "你不可釘選該類型的操作。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "" +"You can not update the access of a shortcut, update its target instead." +msgstr "你不可更新捷徑的存取權限,請改為更新其目標。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You can't access that folder_id." +msgstr "你不可存取該 folder_id。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "" +"You can't create shortcuts in or move documents to this special folder." +msgstr "你不可在此特殊資料夾中建立捷徑,或將文件移至此特殊資料夾。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot access folders in the trash." +msgstr "不可存取垃圾箱內的資料夾。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot change the owner of documents you do not own." +msgstr "你不可更改不屬於你的文件的擁有人。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_tag.py:0 +msgid "You cannot delete tags used in server actions." +msgstr "你不可刪除伺服器操作使用的標籤。" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You cannot duplicate document(s) in the Trash." +msgstr "你不可複製垃圾箱內的文件。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_model_mixin.js:0 +msgid "You cannot move folders or files when in the trash." +msgstr "不可移動垃圾箱內的資料夾或檔案。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_remove_partner_button.xml:0 +msgid "You cannot remove this partner" +msgstr "你不可移除此合作夥伴" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/documents_controller_mixin.xml:0 +msgid "You cannot share multiple documents at the same time" +msgstr "你不可同時分享多個文件" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "You do not have sufficient access rights to delete these documents." +msgstr "你沒有足夠存取權限去刪除這些文件。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/search/documents_search_panel.js:0 +msgid "You don't have the rights to move documents to that folder." +msgstr "你沒有權限將文件移至該資料夾。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/helper/documents_drop_zone.xml:0 +msgid "You must be in a specific writable workspace to upload files" +msgstr "你必須在特定可寫入的工作區,才可上載檔案" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your Role: %s" +msgstr "你的角色:%s" + +#. module: documents +#. odoo-python +#: code:addons/documents/models/documents_document.py:0 +msgid "Your individual space." +msgstr "你的個人空間。" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "alias" +msgstr "別名" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "bytes" +msgstr "位元組" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.folder_deletion_form +msgid "days." +msgstr "天。" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "document" +msgstr "文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "documents" +msgstr "文件" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form +msgid "e.g. Discuss proposal" +msgstr "例:討論提案" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_new_folder +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_rename +msgid "e.g. Finance" +msgstr "例如金融" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_request_form_view +msgid "e.g. Missing Expense" +msgstr "例如:缺失的費用" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.tag_view_form +msgid "e.g. To Validate" +msgstr "例如,待驗證" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.documents_upload_url_view +msgid "e.g. https://www.youtube.com/watch?v=CP96yVnXNrY" +msgstr "例. https://www.youtube.com/watch?v=CP96yVnXNrY" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.document_view_form_details +msgid "e.g. mycompany.com" +msgstr "例:mycompany.com" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "files" +msgstr "檔案" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/components/documents_permission_panel/documents_permission_panel.js:0 +msgid "folder" +msgstr "文件夾" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "folders," +msgstr "資料夾," + +#. module: documents +#: model:ir.model.fields,field_description:documents.field_documents_link_to_record_wizard__is_readonly_model +msgid "is_readonly_model" +msgstr "is_readonly_model" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/chatter/documents_chatter_overlay.xml:0 +msgid "items selected" +msgstr "個項目已選取" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.format_file_size +msgid "kiB" +msgstr "kiB" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_page/pdf_page.xml:0 +msgid "select" +msgstr "選取" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a document with you.
    " +msgstr "與你分享了一份文件。
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared a folder with you.
    " +msgstr "與你分享了一個資料夾。
    " + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "shared by" +msgstr "分享者" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this document with you:" +msgstr "向你分享文件:" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.mail_template_document_share +msgid "shared this folder with you:" +msgstr "向你分享資料夾:" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/views/hooks.js:0 +msgid "status code: %(status)s, message: %(message)s" +msgstr "狀態代碼:%(status)s,訊息:%(message)s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "sub-doc-%s" +msgstr "sub-doc-%s" + +#. module: documents +#. odoo-javascript +#: code:addons/documents/static/src/owl/components/pdf_manager/pdf_manager.js:0 +msgid "unnamed" +msgstr "未命名" + +#. module: documents +#: model_terms:ir.ui.view,arch_db:documents.public_folder_page +msgid "" +"•\n" +" URL" +msgstr "" +"•\n" +" 網址" diff --git a/addons_extensions/documents/models/__init__.py b/addons_extensions/documents/models/__init__.py new file mode 100644 index 000000000..051fbb423 --- /dev/null +++ b/addons_extensions/documents/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +# mixin +from . import documents_unlink_mixin +from . import documents_mixin + +# documents +from . import documents_access +from . import documents_document +from . import documents_redirect +from . import documents_tag + +# orm +from . import ir_attachment +from . import ir_binary + +# inherit +from . import mail_activity +from . import mail_activity_type +from . import res_partner +from . import res_users +from . import res_config_settings diff --git a/addons_extensions/documents/models/documents_access.py b/addons_extensions/documents/models/documents_access.py new file mode 100644 index 000000000..afc6b9720 --- /dev/null +++ b/addons_extensions/documents/models/documents_access.py @@ -0,0 +1,41 @@ +from odoo import _, api, fields, models +from odoo.exceptions import AccessError + + +class DocumentAccess(models.Model): + _name = 'documents.access' + _description = 'Document / Partner' + _log_access = False + + document_id = fields.Many2one('documents.document', required=True, ondelete='cascade') + partner_id = fields.Many2one('res.partner', required=True, ondelete='cascade', index=True) + role = fields.Selection( + [('view', 'Viewer'), ('edit', 'Editor')], + string='Role', required=False, index=True) + last_access_date = fields.Datetime('Last Accessed On', required=False) + expiration_date = fields.Datetime('Expiration', index=True) + + _sql_constraints = [ + ('unique_document_access_partner', 'unique(document_id, partner_id)', + 'This partner is already set on this document.'), + ('role_or_last_access_date', 'check (role IS NOT NULL or last_access_date IS NOT NULL)', + 'NULL roles must have a set last_access_date'), + ] + + def _prepare_create_values(self, vals_list): + vals_list = super()._prepare_create_values(vals_list) + documents = self.env['documents.document'].browse( + [vals['document_id'] for vals in vals_list]) + documents.check_access('write') + return vals_list + + def write(self, vals): + if 'partner_id' in vals or 'document_id' in vals: + raise AccessError(_('Access documents and partners cannot be changed.')) + + self.document_id.check_access('write') + return super().write(vals) + + @api.autovacuum + def _gc_expired(self): + self.search([('expiration_date', '<=', fields.Datetime.now())], limit=1000).unlink() diff --git a/addons_extensions/documents/models/documents_document.py b/addons_extensions/documents/models/documents_document.py new file mode 100644 index 000000000..742cac779 --- /dev/null +++ b/addons_extensions/documents/models/documents_document.py @@ -0,0 +1,2060 @@ +# -*- coding: utf-8 -*- + +import base64 +import contextlib +import io +import logging +import re +import uuid +from ast import literal_eval +from collections import Counter, OrderedDict, defaultdict + +import requests +from dateutil.relativedelta import relativedelta +from markupsafe import Markup +from werkzeug.urls import url_encode + +import odoo +from odoo import _, api, Command, fields, models +from odoo.exceptions import AccessError, UserError, ValidationError +from odoo.osv import expression +from odoo.tools import groupby, image_process, SQL, create_index +from odoo.tools.mimetypes import get_extension +from odoo.tools.misc import clean_context +from odoo.tools.pdf import PdfFileReader +from odoo.addons.mail.tools import link_preview + +_logger = logging.getLogger(__name__) + + +def _sanitize_file_extension(extension): + """ Remove leading and trailing spacing + Remove leading "." """ + return re.sub(r'^[\s.]+|\s+$', '', extension) + + +class Document(models.Model): + _name = 'documents.document' + _description = 'Document' + _inherit = ['mail.thread.cc', 'mail.activity.mixin', 'mail.alias.mixin'] + _order = 'id desc' + _parent_name = 'folder_id' + _parent_store = True + _systray_view = 'activity' + + # Attachment + attachment_id = fields.Many2one('ir.attachment', ondelete='cascade', auto_join=True, copy=False) + attachment_name = fields.Char('Attachment Name', related='attachment_id.name', readonly=False) + attachment_type = fields.Selection(string='Attachment Type', related='attachment_id.type', readonly=False) + is_editable_attachment = fields.Boolean(default=False, help='True if we can edit the link attachment.') + is_multipage = fields.Boolean( + 'Is considered multipage', compute='_compute_is_multipage', store=True, readonly=False) + datas = fields.Binary(related='attachment_id.datas', related_sudo=True, readonly=False, prefetch=False) + raw = fields.Binary(related='attachment_id.raw', related_sudo=True, readonly=False, prefetch=False) + file_extension = fields.Char('File Extension', copy=True, store=True, readonly=False, + compute='_compute_file_extension', inverse='_inverse_file_extension') + file_size = fields.Integer(related='attachment_id.file_size', store=True) + checksum = fields.Char(related='attachment_id.checksum') + mimetype = fields.Char(related='attachment_id.mimetype') + res_model = fields.Char('Resource Model', compute="_compute_res_record", recursive=True, + inverse="_inverse_res_model", store=True) + res_id = fields.Many2oneReference('Resource ID', compute="_compute_res_record", recursive=True, + inverse="_inverse_res_model", store=True, model_field="res_model") + res_name = fields.Char('Resource Name', compute="_compute_res_name", compute_sudo=True) + index_content = fields.Text(related='attachment_id.index_content') + description = fields.Text('Attachment Description', related='attachment_id.description', readonly=False) + + # Versioning + previous_attachment_ids = fields.Many2many('ir.attachment', string="History") + + # Document + name = fields.Char('Name', copy=True, store=True, compute='_compute_name_and_preview', readonly=False) + active = fields.Boolean(default=True, string="Active") + thumbnail = fields.Binary( + readonly=False, store=True, attachment=True, compute='_compute_thumbnail', recursive=True) + thumbnail_status = fields.Selection([ + ('present', 'Present'), # Document has a thumbnail + ('error', 'Error'), # Error when generating the thumbnail + ('client_generated', 'Client Generated'), # The PDF thumbnail is generated by the user browser + ('restricted', 'Inaccessible'), # Shortcut to no-permission source + ], compute="_compute_thumbnail", store=True, readonly=False, recursive=True, + ) + url = fields.Char('Link URL', index=True, size=1024, tracking=True) + url_preview_image = fields.Char( + 'URL Preview Image', store=True, compute='_compute_name_and_preview', readonly=False) + res_model_name = fields.Char(compute='_compute_res_model_name', index=True) + type = fields.Selection([('url', 'URL'), ('binary', 'File'), ('folder', 'Folder')], + default='binary', string='Type', required=True, readonly=True) + shortcut_document_id = fields.Many2one('documents.document', 'Source Document', ondelete='cascade', + index='btree_not_null') + shortcut_ids = fields.One2many('documents.document', 'shortcut_document_id') + + favorited_ids = fields.Many2many('res.users', string="Favorite of") + is_favorited = fields.Boolean(compute='_compute_is_favorited', inverse='_inverse_is_favorited') + tag_ids = fields.Many2many('documents.tag', 'document_tag_rel', string="Tags") + partner_id = fields.Many2one('res.partner', string="Contact", tracking=True) + owner_id = fields.Many2one('res.users', default=lambda self: self.env.user.id, string="Owner", + required=True, tracking=True, index=True) + lock_uid = fields.Many2one('res.users', string="Locked by") + is_locked = fields.Boolean(compute="_compute_is_locked", string="Locked") + request_activity_id = fields.Many2one('mail.activity') + requestee_partner_id = fields.Many2one('res.partner') + + # Access + document_token = fields.Char( + required=True, copy=False, index='btree', + default=lambda __: base64.urlsafe_b64encode(uuid.uuid4().bytes).decode().removesuffix('==')) + access_token = fields.Char(compute='_compute_access_token') + + access_url = fields.Char(string='Access url', compute='_compute_access_url') + is_access_via_link_hidden = fields.Boolean( + 'Link Access Hidden', index=True, + help='If "True", only people given direct access to this document will be able to view it. ' + 'If "False", access with the link also given to all who can access the parent folder.' + ) + access_via_link = fields.Selection( + [('view', 'Viewer'), ('edit', 'Editor'), ('none', 'None')], + string='Link Access Rights', default='none', required=True, index=True) + access_internal = fields.Selection( + [('view', 'Viewer'), ('edit', 'Editor'), ('none', 'None')], + string='Internal Users Rights', default='none', required=True, index=True) + + access_ids = fields.One2many('documents.access', 'document_id', string="Allowed Access") + + user_permission = fields.Selection( + [('edit', 'Editor'), ('view', 'Viewer'), ('none', 'None')], string='User permission', + compute='_compute_user_permission', search='_search_user_permission', compute_sudo=True) + + # Folder = parent document + parent_path = fields.Char(index=True) # see '_parent_store' implementation in the ORM for details + folder_id = fields.Many2one('documents.document', string="Parent Folder", ondelete="set null", tracking=True, + domain="[('type', '=', 'folder'), ('shortcut_document_id', '=', False)]", + required=False, index=True) + children_ids = fields.One2many('documents.document', 'folder_id') + + deletion_delay = fields.Integer("Deletion delay", compute="_compute_deletion_delay", + help="Delay after permanent deletion of the document in the trash (days)") + company_id = fields.Many2one('res.company', string='Company', store=True, readonly=False, index=True) + + # TODO: remove in master + is_pinned_folder = fields.Boolean("Pinned to Company roots", compute='_compute_is_pinned_folder', store=True) + + # Stat buttons + document_count = fields.Integer('Document Count', compute='_compute_document_count') + + # Activity + create_activity_option = fields.Boolean(string='Create a new activity') + create_activity_type_id = fields.Many2one('mail.activity.type', string="Activity type") + create_activity_summary = fields.Char('Summary') + create_activity_date_deadline_range = fields.Integer(string='Due Date In') + create_activity_date_deadline_range_type = fields.Selection([ + ('days', 'Days'), + ('weeks', 'Weeks'), + ('months', 'Months'), + ], string='Due type', default='days') + create_activity_note = fields.Html(string="Note") + create_activity_user_id = fields.Many2one('res.users', string='Responsible') + + # Actions that we can do on the document + available_embedded_actions_ids = fields.Many2many( + 'ir.embedded.actions', 'Available Actions', compute='_compute_available_embedded_actions_ids', + groups='base.group_user') + + # Alias + alias_tag_ids = fields.Many2many('documents.tag', 'document_alias_tag_rel', string="Alias Tags") + + # UI fields + last_access_date_group = fields.Selection(selection=[ + ('0_older', 'Older'), + ('1_month', 'This Month'), + ('2_week', 'This Week'), + ('3_day', 'Today'), + ], string="Last Accessed On", compute='_compute_last_access_date_group', search='_search_last_access_date_group') + + _sql_constraints = [ + ('attachment_unique', 'unique (attachment_id)', "This attachment is already a document"), + ('document_token_unique', 'unique (document_token)', "Access tokens already used."), + ('folder_id_not_id', 'check(folder_id <> id)', "A folder cannot be included in itself"), + ('shortcut_document_id_not_id', 'check(shortcut_document_id <> id)', "A shortcut cannot point to itself"), + ] + + def init(self): + super().init() + create_index(self.env.cr, + indexname='documents_document_res_model_res_id_idx', + tablename=self._table, + expressions=['res_model', 'res_id']) + + @api.depends('document_token') + def _compute_access_token(self): + for document in self: + document.access_token = f"{document.document_token}o{document.id or 0:x}" + + @api.depends('access_token') + def _compute_access_url(self): + for document in self: + document.access_url = f'{document.sudo().get_base_url()}/odoo/documents/{document.access_token}' + + @api.depends("folder_id", "company_id") + @api.depends_context("uid", "allowed_company_ids") + def _compute_display_name(self): + accessible_records = self._filtered_access('read') + not_accessible_records = self - accessible_records + not_accessible_records.display_name = _("Restricted") + folders = accessible_records.filtered(lambda d: d.type == 'folder') + for record in folders: + if record.user_permission != 'none': + record.display_name = record.name + else: + record.display_name = _("Restricted Folder") + + for record in accessible_records - folders: + record.display_name = record.name + + @api.depends('name', 'type') + def _compute_file_extension(self): + for record in self: + if record.type != 'binary': + record.file_extension = False + elif record.name: + record.file_extension = _sanitize_file_extension(get_extension(record.name.strip())) or False + + def _inverse_file_extension(self): + for record in self: + record.file_extension = _sanitize_file_extension(record.file_extension) if record.file_extension else False + + @api.constrains('shortcut_document_id', 'shortcut_ids', 'type', 'folder_id', 'children_ids', 'company_id') + def _check_shortcut_fields(self): + errors = [] + wrong_types, wrong_companies = self.browse(), self.browse() + # Access rights can allow for a document to be edited without having access to its parent folder + wrong_parents_sudo = self.folder_id.sudo().filtered('shortcut_document_id') + for target in self.filtered('shortcut_ids'): + for shortcut in target.shortcut_ids: + if shortcut.type != target.type: + wrong_types |= shortcut + for shortcut in self.filtered('shortcut_document_id'): + if shortcut.type != shortcut.shortcut_document_id.type: + wrong_types |= shortcut + if shortcut.children_ids: + wrong_parents_sudo |= shortcut + if (shortcut.shortcut_document_id.company_id + and shortcut.shortcut_document_id.company_id != shortcut.company_id): + wrong_companies |= shortcut + if wrong_types: + message = _("The following documents/shortcuts have a type mismatch: \n") + documents_list = "\n- ".join(wrong_types.mapped('name')) + errors.append(f'{message}\n- {documents_list}') + if wrong_parents_sudo: + message = _("The following shortcuts cannot be set as documents parents: \n") + shortcuts_list = "\n- ".join(wrong_parents_sudo.mapped('name')) + errors.append(f'{message}\n- {shortcuts_list}') + if wrong_companies: + message = _("The following documents/shortcuts have a company mismatch: \n") + shortcuts_list = "\n- ".join(wrong_companies.mapped('name')) + errors.append(f'{message}\n- {shortcuts_list}') + if errors: + raise ValidationError('\n\n'.join(errors)) + + @api.constrains('owner_id', 'folder_id') + def _check_portal_cant_own_root_document(self): + wrong_records = self.filtered(lambda d: d.owner_id.sudo().share and not self.folder_id) + if wrong_records: + raise ValidationError(_( + "The following documents/folders can't be owned by a Portal User: \n- %(partners)s", + partners="\n-".join(wrong_records.mapped('name')))) + + @api.constrains('type', 'alias_name') + def _check_alias(self): + wrong_records = self.filtered(lambda d: (d.type != 'folder' or d.shortcut_document_id) and d.alias_name) + if wrong_records: + raise ValidationError(_( + "The following documents can't have alias: \n- %(records)s", + records="\n-".join(wrong_records.mapped('name')))) + + @api.depends('folder_id', 'owner_id', 'type') + def _compute_is_pinned_folder(self): + # TODO: remove in master, for stable force the field to reflect owner / folder value + # because it's used in access rule `documents_document_write_base_rule` + for document in self: + document.is_pinned_folder = ( + document.type == 'folder' + and not document.folder_id + and document.owner_id == self.env.ref('base.user_root') + ) + + @api.depends('attachment_id', 'url', 'shortcut_document_id') + def _compute_name_and_preview(self): + request_session = requests.Session() + shortcuts = self.filtered('shortcut_document_id') + for record in self - shortcuts: + if record.attachment_id: + record.name = record.attachment_id.name + record.url_preview_image = False + elif record.url: + preview = link_preview.get_link_preview_from_url(record.url, request_session) + if not preview: + continue + if preview.get('og_title'): + record.name = preview['og_title'] + if preview.get('og_image'): + record.url_preview_image = preview['og_image'] + + for shortcut in shortcuts: + shortcut.name = shortcut.name or shortcut.shortcut_document_id.name + shortcut.url_preview_image = shortcut.url_preview_image or shortcut.shortcut_document_id.url_preview_image + + @api.depends_context('uid', 'allowed_company_ids') + @api.depends('access_ids', 'access_internal', 'access_via_link', 'owner_id', 'is_access_via_link_hidden', + 'company_id', 'folder_id.access_ids', 'folder_id.access_internal', 'folder_id.access_via_link', + 'folder_id.owner_id', 'folder_id.company_id') + def _compute_user_permission(self): + for document in self: + if self.env.user.has_group('documents.group_documents_system'): + document.user_permission = ( + 'edit' if not (company := document.company_id) + or company in self.env.companies or company not in self.env.user.company_ids + else 'none') + continue + document.user_permission = document._get_permission_without_token() + if document.user_permission == 'view' and document.access_via_link == 'edit': + document.user_permission = 'edit' + elif document.user_permission == 'none' and document.folder_id and document.access_via_link != 'none' \ + and not document.is_access_via_link_hidden: + # If the user can access the parent, they have the link. + # This only works one level up, as it mimics accessing through the interface. + with contextlib.suppress(AccessError): + if document.folder_id._get_permission_without_token() != 'none': + document.user_permission = document.access_via_link + + def _get_permission_without_token(self): + self.ensure_one() + is_user_company = self.company_id and self.company_id in self.env.user.company_ids + is_disabled_company = is_user_company and self.company_id not in self.env.companies + if is_disabled_company: + return 'none' + + # own documents + if self.owner_id == self.env.user: + return 'edit' + + user_permission = 'none' + # access with + if access := self.access_ids.filtered( + lambda a: a.partner_id == self.env.user.partner_id + and (not a.expiration_date or a.expiration_date > fields.Datetime.now()) + ): + user_permission = access.role or self.access_via_link + + # access as internal + if not self.env.user.share and user_permission != "edit" and self.access_internal != 'none': + if not self.company_id or self.company_id in self.env.companies: + user_permission = ( + 'edit' if self.env.user.has_group('documents.group_documents_manager') + else self.access_internal + ) + + return user_permission + + def _search_user_permission(self, operator, value): + if operator not in ('=', '!='): + raise NotImplementedError("Unsupported search operator") + if self.env.user._is_public() or value not in {'view', 'edit', 'none'}: + return expression.FALSE_DOMAIN + + if (operator, value) in (("=", "edit"), ("!=", "view")): # access but no view => edit + searched_roles = ['edit'] + elif (operator, value) in (('=', 'view'), ("!=", "edit")): # access without edit => view + searched_roles = ['view'] + elif (operator, value) == ("!=", "none"): # any access + searched_roles = ['edit', 'view'] + else: + return expression.FALSE_DOMAIN # ("=", "none") = not allowed, so no records + + other_company = [('company_id', '!=', False), ('company_id', 'not in', self.env.user.company_ids.ids)] + allowed_or_no_company = [('company_id', 'in', [False] + self.env.companies.ids)] + any_except_disabled_company = expression.OR([ + [('company_id', 'in', self.env.companies.ids)], [('company_id', 'not in', self.env.user.company_ids.ids)] + ]) + + if self.env.user.has_group('documents.group_documents_system'): + if searched_roles == ['view']: + return expression.FALSE_DOMAIN # System Administrator has "edit" on all documents, so finds none with "view" only. + return any_except_disabled_company + + # Access from membership + if searched_roles == ['view']: + access_level_domain = expression.OR([ + [('role', '=', 'view'), ('document_id.access_via_link', 'in', ('none', 'view'))], + [('role', '=', False), ('document_id.access_via_link', '=', 'view')], + ]) + elif searched_roles == ['edit']: + access_level_domain = expression.OR([ + [('role', '=', 'edit')], [('document_id.access_via_link', '=', 'edit')] + ]) + else: + access_level_domain = expression.OR([ + [('role', 'in', ('view', 'edit'))], [('document_id.access_via_link', '!=', 'none')] + ]) + access_domain = [('access_ids', 'any', expression.AND([ + access_level_domain, + expression.AND([ + [('partner_id', '=', self.env.user.partner_id.id)], + ['|', ('expiration_date', '=', False), ('expiration_date', '>', fields.Datetime.now())], + ]), + ]))] + + # Access from ownership + owner_domain = [('owner_id', '=', self.env.user.id)] + direct_domain = expression.AND([ + any_except_disabled_company, + access_domain if 'edit' not in searched_roles else expression.OR([access_domain, owner_domain]), + ]) + + # Access form access_internal + if self.env.user.has_group('documents.group_documents_manager'): + if searched_roles == ['view']: + direct_domain = expression.AND([ + direct_domain, + expression.OR([[('access_internal', '=', 'none')], other_company]) + ]) + else: + direct_domain = expression.OR([ + direct_domain, + expression.AND([[('access_internal', 'in', ('view', 'edit'))], allowed_or_no_company]), + ]) + elif not self.env.user.share: + if searched_roles == ['view']: + internal_domain = [('access_internal', '=', 'view'), ('access_via_link', 'in', ('none', 'view'))] + elif searched_roles == ['edit']: + internal_domain = expression.OR([ + [('access_internal', '=', 'edit')], + expression.AND([[('access_internal', '=', 'view')], [('access_via_link', '=', 'edit')]]), + ]) + else: + internal_domain = [('access_internal', 'in', ('view', 'edit'))] + direct_domain = expression.OR([direct_domain, expression.AND([internal_domain, allowed_or_no_company])]) + + # Look one level up for links unless hidden + link_via_parent_domain = expression.AND([ + [('access_via_link', 'in', searched_roles)], + [('is_access_via_link_hidden', '=', False)], + [('folder_id', 'any', direct_domain)], + ]) + + return expression.OR([direct_domain, link_via_parent_domain]) + + @api.depends('datas', 'mimetype') + def _compute_is_multipage(self): + for document in self: + # external computation to be extended + document.is_multipage = bool(document._get_is_multipage()) # None => False + + @api.depends('attachment_id', 'attachment_id.res_model', 'attachment_id.res_id', + 'shortcut_document_id.res_model', 'shortcut_document_id.res_id') + def _compute_res_record(self): + for record in self: + attachment = record.attachment_id + if attachment: + record.res_model = attachment.res_model + record.res_id = attachment.res_id + if record.shortcut_document_id: + record.res_model = record.shortcut_document_id.res_model + record.res_id = record.shortcut_document_id.res_id + + @api.depends('attachment_id', 'res_model', 'res_id') + def _compute_res_name(self): + for record in self: + if record.attachment_id: + record.res_name = record.attachment_id.res_name + elif record.res_id and record.res_model: + record.res_name = self.env[record.res_model].browse(record.res_id).display_name + else: + record.res_name = False + + def _inverse_res_model(self): + for record in self: + attachment = record.attachment_id.with_context(no_document=True) + if attachment: + # Avoid inconsistency in the data, write both at the same time. + # In case a check_access is done between res_id and res_model modification, + # an access error can be received. (Mail causes this check_access) + attachment.sudo().write({'res_model': record.res_model, 'res_id': record.res_id}) + + @api.depends('checksum', 'shortcut_document_id.thumbnail', 'shortcut_document_id.thumbnail_status', + 'shortcut_document_id.user_permission') + def _compute_thumbnail(self): + for document in self: + if document.shortcut_document_id: + if document.shortcut_document_id.user_permission != 'none': + document.thumbnail = document.shortcut_document_id.thumbnail + document.thumbnail_status = document.shortcut_document_id.thumbnail_status + else: + document.thumbnail = False + document.thumbnail_status = 'restricted' + elif document.mimetype and document.mimetype.startswith('application/pdf'): + # Thumbnails of pdfs are generated by the client. To force the generation, we invalidate the thumbnail. + document.thumbnail = False + document.thumbnail_status = 'client_generated' + elif document.mimetype and document.mimetype.startswith('image/'): + try: + document.thumbnail = base64.b64encode(image_process(document.raw, size=(200, 140), crop='center')) + document.thumbnail_status = 'present' + except (UserError, TypeError): + document.thumbnail = False + document.thumbnail_status = 'error' + else: + document.thumbnail = False + document.thumbnail_status = False + + @api.depends('type') + def _compute_deletion_delay(self): + folders = self.filtered(lambda d: d.type == 'folder') + folders.deletion_delay = self.get_deletion_delay() + (self - folders).deletion_delay = False + + @api.depends_context('uid') + @api.depends('type', 'children_ids', 'shortcut_document_id') + def _compute_document_count(self): + folders = (self | self.shortcut_document_id).filtered( + lambda d: d.type == 'folder' and not d.shortcut_document_id) + + children_counts = Counter(dict(self._read_group( + [('folder_id', 'in', folders.ids)], + groupby=['folder_id'], + aggregates=['__count']))) + + for doc in self: + doc.document_count = children_counts[doc.shortcut_document_id or doc] + + def _get_folder_embedded_actions(self, folder_ids): + """Return the enabled actions for the given folder.""" + embedded_actions = self.env['ir.embedded.actions'].sudo().search( + domain=[ + ('parent_action_id', '=', self.env.ref("documents.document_action").id), + ('action_id', '!=', False), + ('action_id.type', '=', 'ir.actions.server'), + ('parent_res_model', '=', 'documents.document'), + ('parent_res_id', 'in', folder_ids), + ('groups_ids', 'in', [False] + self.env.user.groups_id.ids), + ], + order='sequence', + ) + # group after ordering by `ir.embedded.actions` sequence + return embedded_actions.grouped('parent_res_id') + + @api.depends_context('uid') + @api.depends('folder_id') + def _compute_available_embedded_actions_ids(self): + embedded_actions = self._get_folder_embedded_actions(self.folder_id.ids) + embedded_actions_per_folder = { + folder_id: actions.ids + for folder_id, actions in embedded_actions.items() + } + self.available_embedded_actions_ids = False + for document in self.filtered(lambda d: d.type != 'folder' and not d.shortcut_document_id): + document.available_embedded_actions_ids = embedded_actions_per_folder.get(document.folder_id.id, False) + + def _get_last_access_date_group_cte(self): + return SQL(""" + WITH last_access_date AS ( + SELECT (CASE + WHEN last_access_date > NOW() - INTERVAL '1 days' THEN '3_day' + WHEN last_access_date > NOW() - INTERVAL '7 days' THEN '2_week' + WHEN last_access_date > NOW() - INTERVAL '1 months' THEN '1_month' + ELSE '0_older' + END) AS date, + document_id + FROM documents_access + WHERE partner_id = %s + ) + """, self.env.user.partner_id.id) + + @api.depends('access_ids') + def _compute_last_access_date_group(self): + self.env.cr.execute(SQL( + """(%s SELECT document_id, date FROM last_access_date WHERE document_id = ANY(%s))""", + self._get_last_access_date_group_cte(), + self.ids, + )) + values = {line['document_id']: line['date'] for line in self.env.cr.dictfetchall()} + for document in self: + document.last_access_date_group = values.get(document.id) + + def _search_last_access_date_group(self, operator, operand): + if operator != '=': + raise NotImplementedError("Unsupported search operator or value") + query = SQL( + """(%s SELECT document_id FROM last_access_date WHERE date = %s)""", + self._get_last_access_date_group_cte(), operand) + return [('id', 'in', query)] + + def _field_to_sql(self, alias, fname, query=None, flush: bool = True) -> SQL: + if fname == 'last_access_date_group': + # Allow to group on the field + return SQL("""(%s SELECT date FROM last_access_date WHERE document_id = %s)""", + self._get_last_access_date_group_cte(), SQL.identifier(alias, 'id')) + + return super()._field_to_sql(alias, fname, query, flush) + + def _order_field_to_sql(self, alias, field_name, direction, nulls, query): + if field_name == 'last_access_date_group': + sql_field = SQL( + "SELECT last_access_date FROM documents_access WHERE partner_id = %s AND document_id = %s", + self.env.user.partner_id.id, + SQL.identifier(alias, 'id') + ) + return SQL("(%s) %s %s", sql_field, direction, nulls) + + if field_name == 'is_folder': + sql_field = SQL("%s != 'folder'", SQL.identifier(alias, 'type')) + return SQL("(%s) %s %s", sql_field, direction, nulls) + + return super()._order_field_to_sql(alias, field_name, direction, nulls, query) + + @api.model + def get_previewable_file_extensions(self): + return {'bmp', 'mp4', 'mp3', 'png', 'jpg', 'jpeg', 'pdf', 'gif', 'txt', 'wav'} + + def action_move_documents(self, folder_id): + """Move document to new parent folder or none (my drive or company) + + :param int|bool folder_id: new parent folder id + """ + target_folder = self.browse(folder_id) + if target_folder.shortcut_document_id: + return self.action_move_documents(target_folder.shortcut_document_id.id) + + documents_to_move = self.filtered(lambda d: d.folder_id != target_folder and d != target_folder) + if not documents_to_move: + return + + try: + (documents_to_move | target_folder).check_access('write') + except UserError: + raise AccessError(_("You are not allowed to perform this operation.")) + if target_folder and (cyclic_move := documents_to_move.filtered( + lambda d: target_folder.parent_path.startswith(d.parent_path))): + raise UserError(_( + "Impossible to move the following items as this would create a recursive hierarchy:\n" + "- %(documents)s", documents='\n- '.join(cyclic_move.mapped('name')) + )) + documents_to_move.folder_id = target_folder + + if target_folder and (documents_to_sync := documents_to_move.filtered(lambda d: not d.shortcut_document_id)): + documents_to_sync.sudo().action_update_access_rights( + access_internal=target_folder.access_internal, + access_via_link=target_folder.access_via_link, + is_access_via_link_hidden=target_folder.is_access_via_link_hidden, + # Simply add partners of destination + partners={access.partner_id: (access.role, access.expiration_date) + for access in target_folder.access_ids}, + ) + + def action_change_owner(self, new_user_id): + if not self.env.user._is_admin() and not self.env.user.has_group('documents.group_documents_manager'): + if any(document.owner_id != self.env.user for document in self): + raise AccessError(_("You are not allowed to change ownerships of documents you do not own.")) + self.owner_id = new_user_id + + def action_create_shortcut(self, location_folder_id=None): + """Create a shortcut to self in a specific folder or as sibling + + :param int | None location_folder_id: Optional: where to create the shortcut. + """ + if not self.ids: + return + + if len(self.folder_id.ids) > 1 and location_folder_id is None: + raise UserError(_("A destination is required when creating multiple shortcuts at once.")) + if self.shortcut_document_id: + targets = self.filtered(lambda d: not d.shortcut_document_id) | self.shortcut_document_id + return targets.action_create_shortcut(location_folder_id or self.folder_id.id) + + location = self.browse(location_folder_id) if location_folder_id is not None else self.folder_id + if location_folder_id and location.shortcut_document_id: + return self.action_create_shortcut(location.shortcut_document_id.id) + + if location: + try: + location.check_access('write') + except UserError as exc: + if self.env.user.share: + raise AccessError(_("You are not allowed to write in this folder.")) from exc + location = self.browse() # My Drive + self.env.user._bus_send('simple_notification', { + 'type': 'info', + 'message': _("Shortcut created in My Drive"), + }) + if location.shortcut_document_id: + raise AccessError(_("Shortcuts cannot contain documents.")) + self.check_access('read') + + return self.sudo().create([{ + "folder_id": location.id, + "shortcut_document_id": document.id, + "name": document.name, + "type": document.type, + "access_internal": document.access_internal or 'view', + "access_via_link": document.access_via_link or 'none', + "company_id": document.company_id.id, + "access_ids": [ + Command.create({ + "partner_id": access.partner_id.id, + "role": access.role, + }) + for access in document.access_ids if access.role + ], + "is_multipage": document.is_multipage, + "is_access_via_link_hidden": document.is_access_via_link_hidden, + } for document in self]).sudo(False) + + def action_update_access_rights(self, access_internal=None, access_via_link=None, is_access_via_link_hidden=None, + partners=None, notify=False, message=""): + """Update access to a document and propagate if applicable. + + This method can be called to update the access of internal users, with + the link, as well as a set of partners and roles to the records in self + and their children (except shortcuts), and shortcuts pointing to them + as they are kept synchronized. + + Modifications to internal users and link access are propagated down to + children until the new value is already present. + For partners, all changes are applied to all children regardless of the + existing rights structure. + + :param str | None access_internal: optional new permission level for internal users + :param str | None access_via_link: optional new permission level for partners with the link + :param bool|None is_access_via_link_hidden: optional new value for discoverability + :param dict[str | int | res.partner(), tuple[str | bool | None, str | datetime | bool | None] partners: + Mapping of partner(_id) to the tuple: + role: 'edit', 'view', False (=>delete), + expiration: datetime string, False (removed/None) + :param bool notify: whether to send an email + :param str message: message to add to the email + """ + if len(self.ids) == 0: + return + try: + self.check_access('write') + except UserError: + raise AccessError("You are not allowed to update these access rights.") + + if len(self.ids) > 1 and notify: + raise UserError(_("Impossible to invite partners on multiple documents at once.")) + + if self.shortcut_document_id: + raise UserError(_("You can not update the access of a shortcut, update its target instead.")) + + # Check inputs as we are going to bypass the ORM in the private method(s) + access_options = {'view', 'edit', 'none', None} + hidden_options = {None, True, False} + role_options = {'edit', 'view', False, None} + incorrect_fields_to_options = { + **({'is_access_via_link_hidden': hidden_options} if is_access_via_link_hidden not in hidden_options else {}), + **({'access_via_link': access_options} if access_via_link not in access_options else {}), + **({'access_internal': access_options} if access_internal not in access_options else {}), + **({'partners.role': role_options} + if any(role not in role_options for (__, (role, __)) in (partners or {}).items()) else {}) + } + if incorrect_fields_to_options: + hints = "\n- " + "\n- ".join(f'{name}: {options}' for name, options in incorrect_fields_to_options.items()) + raise UserError(_( + "Incorrect values. Use one of the following for the following fields: %(hints)s.)", hints=hints + )) + + self._action_update_access(access_internal, access_via_link, is_access_via_link_hidden) + if partners: + partners = { + self.env['res.partner'].browse(int(partner)) if isinstance(partner, str | int) else partner: + (role, fields.Datetime.to_datetime(exp) if exp and isinstance(exp, str) else exp) + for partner, (role, exp) in (partners or {}).items() + } + root_access_partners = self.access_ids.partner_id + self._action_update_members(partners) + if notify: + self._send_access_by_mail( + {p: role for p, (role, __) in partners.items() if role and p not in root_access_partners}, + message=message + ) + + return self.mapped('user_permission') + + def _action_update_access(self, access_internal, access_via_link, is_access_via_link_hidden): + """Update the access on self and children. + + Stop the propagation when the value is already the right one. + + :param str | None access_internal: change the `access_internal` if not None + :param str | None access_via_link: change the `access_via_link` if not None + :param bool | None is_access_via_link_hidden: change the `is_access_via_link_hidden` if not None + """ + self.flush_model() + shortcuts_to_check_owner_target_access = self.browse() + for field, value in ( + ('access_internal', access_internal), + ('access_via_link', access_via_link), + ('is_access_via_link_hidden', is_access_via_link_hidden), + ): + if value is None: + continue + + # records that we might need to update + candidates_domain = [ + (field, '!=', value), + *([] if self.env.su else [('user_permission', '=', 'edit')]), + # the update is done only "target -> shortcut", + # but not "shortcut -> target" + ('shortcut_document_id', '=', False), + ('id', 'child_of', self.ids), + ] + candidates = self.env['documents.document']._search( + candidates_domain).select('id', 'folder_id', 'shortcut_document_id', field) + shortcuts_to_check_owner_target_access |= self.search([('shortcut_document_id', 'any', candidates_domain)]) + + self.env.cr.execute(SQL(""" + WITH RECURSIVE candidates AS (%(candidates)s), + -- explore the folders + documents_to_update AS ( + SELECT id + FROM candidates + WHERE id = ANY(%(root_ids)s) + UNION + SELECT child.id + FROM candidates AS child + JOIN documents_to_update AS parent + ON child.folder_id = parent.id + ), + documents_and_shortcuts AS ( + SELECT id FROM documents_to_update + UNION + -- document.shortcut_ids + -- update in "SUDO" to keep them synchronized + SELECT shortcut.id + FROM documents_document AS shortcut + JOIN documents_to_update + ON documents_to_update.id = shortcut.shortcut_document_id + ) + UPDATE documents_document + SET %(field)s = %(value)s + FROM documents_and_shortcuts AS doc + -- document | document.children_ids | document.shortcut_ids + WHERE documents_document.id = doc.id + """, field=SQL(field), value=value, root_ids=self.ids, candidates=candidates)) + + self.invalidate_model([ + 'access_internal', + 'access_via_link', + 'is_access_via_link_hidden', + 'user_permission', + ]) + + shortcuts_to_check_owner_target_access._unlink_shortcut_if_target_inaccessible() + + def _action_update_members(self, partners): + """Update the members access on all files bellow the current folder. + + :param partners: Partners to add as members / change access + """ + self.env['documents.access'].flush_model() + + partners_to_remove = self.env['res.partner'] + # {(role, expiration_date): partners} + values_to_update = defaultdict(lambda: self.env['res.partner']) + + for partner, (role, expiration_date) in partners.items(): + if role is False: + # remove the members + partners_to_remove |= partner + elif role is not None or expiration_date is not None: + values_to_update[role, expiration_date] |= partner + + # use `_search` to respect access rules and to use `_search_user_permission` + to_update_domain = [ + *([] if self.env.su else [('user_permission', '=', 'edit')]), + ('shortcut_document_id', '=', False), # update "target -> shortcuts" but not "shortcut -> target" + ('id', 'child_of', self.ids), + ] + documents = self.env['documents.document']._search(to_update_domain).select('id') + + for (role, expiration_date), partners in values_to_update.items(): + update_fields = [] + if role not in ('edit', 'view'): + raise UserError(_("Invalid role.")) # The public method would have returned a more insightful message + else: + update_fields.append(SQL('role = %(role)s', role=role)) + if expiration_date is not None: + update_fields.append(SQL( + 'expiration_date = %(expiration_date)s', + expiration_date=expiration_date or None, + )) + update_fields = SQL(',').join(update_fields) + + self.env.cr.execute(SQL( + """ + WITH documents AS (%(documents)s), + documents_and_shortcuts AS ( + SELECT * FROM documents + UNION + -- document.shortcut_ids + SELECT shortcut.id + FROM documents_document AS shortcut + JOIN documents AS document + ON document.id = shortcut.shortcut_document_id + ) + INSERT INTO documents_access ( + document_id, + partner_id, + role, + expiration_date + ) ( + SELECT DISTINCT ON (doc.id, partner_id) doc.id, + partner_id, + %(role)s, + %(expiration_date)s + FROM documents_and_shortcuts AS doc + JOIN LATERAL UNNEST(%(partner_ids)s) AS partner_id + ON 1=1 + ) + ON CONFLICT (document_id, partner_id) DO UPDATE SET + %(update_fields)s + """, + documents=documents, + partner_ids=partners.ids, + expiration_date=expiration_date or None, + role=role, + update_fields=update_fields, + )) + shortcuts_to_check_owner_target_access = self.browse() + if partners_to_remove: + shortcuts_to_check_owner_target_access = self.search(expression.AND([ + [('shortcut_document_id', 'any', to_update_domain)], + [('owner_id.partner_id', 'in', partners_to_remove.ids)], + ])) + + self.env.cr.execute(SQL(""" + WITH documents AS (%(documents)s), + docs_and_shortcuts AS ( + SELECT id + FROM documents + UNION + SELECT shortcut.id + FROM documents AS doc + JOIN documents_document AS shortcut + ON doc.id = shortcut.shortcut_document_id + ) + DELETE FROM documents_access AS access + USING docs_and_shortcuts AS doc + WHERE access.document_id = doc.id + AND access.partner_id = ANY(%(partner_ids)s) + """, documents=documents, partner_ids=partners_to_remove.ids)) + + self.env['documents.document'].invalidate_model([ + 'access_ids', + 'user_permission', + ]) + + shortcuts_to_check_owner_target_access._unlink_shortcut_if_target_inaccessible() + + def action_see_documents(self): + if self.type != "folder": + raise UserError(_("Not a folder.")) + + domain = [('folder_id', '=', self.id)] + return { + 'name': _('Documents'), + 'domain': domain, + 'res_model': 'documents.document', + 'type': 'ir.actions.act_window', + 'views': [(False, 'list'), (False, 'form')], + 'view_mode': 'list,form', + 'context': {'searchpanel_default_folder_id': self.id} + } + + def toggle_is_pinned_folder(self): + # TODO: remove in master + self.ensure_one() + + @api.model + def get_documents_actions(self, folder_id): + """Return the available actions and a key to know if the action is embedded on the folder.""" + folder = self.env['documents.document'].browse(folder_id).exists() + if not folder: + raise UserError(_('This folder does not exist.')) + + embedded_actions = self._get_folder_embedded_actions(folder.ids) + embedded_actions = embedded_actions[folder.id].action_id.ids if embedded_actions else [] + + actions = self.env['ir.actions.server'].sudo().search([ + ('model_id', '=', self.env['ir.model']._get_id('documents.document')), + ('usage', '=', 'ir_actions_server'), + ]) + # Do not show an action if it's a child of a different action + actions -= actions.child_ids + return [{ + "id": action.id, + "name": action.display_name, + "is_embedded": action.id in embedded_actions + } for action in actions] + + @api.model + def action_folder_embed_action(self, folder_id, action_id, groups_ids=None): + """Enable / disable the action for the given folder + + :param int folder_id: The folder on which we pin the actions + :param int action_id: The id of the action to enable + :param list[int] groups_ids: ids of the groups the action is available to + """ + if not self.env.user.has_group('documents.group_documents_user'): + raise AccessError(_("You are not allowed to pin/unpin embedded Actions.")) + + if not groups_ids: + groups_ids = self.env.ref('base.group_user').ids + + action = self.env['ir.actions.server'].browse(action_id).sudo().exists() + if not action: + raise UserError(_('This action does not exist.')) + if action.type != 'ir.actions.server': + raise UserError(_('You can not ping that type of action.')) + folder = self.env['documents.document'].browse(folder_id).sudo().exists() + if not folder or folder.type != 'folder': + raise UserError(_('You can not ping an action on that document.')) + + embedded = self.env['ir.embedded.actions'].sudo().search([ + ('parent_action_id', '=', self.env.ref("documents.document_action").id), + ('action_id', '=', action_id), + ('action_id.type', '=', 'ir.actions.server'), + ('parent_res_model', '=', 'documents.document'), + ('parent_res_id', '=', folder_id), + ('groups_ids', 'in', groups_ids), + ]).sudo(False) + if embedded: + embedded.unlink() + else: + # first pinned action should be displayed first + last_action = self.env['ir.embedded.actions'].search( + [], order='sequence DESC', limit=1) + self.env['ir.embedded.actions'].create({ + 'name': action.name, + 'parent_action_id': self.env.ref("documents.document_action").id, + 'action_id': action.id, + 'parent_res_model': 'documents.document', + 'parent_res_id': folder_id, + 'groups_ids': groups_ids, + 'sequence': last_action.sequence + 1 if last_action else 1, + }) + + return self.get_documents_actions(folder_id) + + @api.model + def action_execute_embedded_action(self, action_id): + """Execute an embedded action on context records. + + :param int action_id: id of embedded action to be run on context provided records. + """ + if self.env.user.share: + raise AccessError(_("You are not allowed to execute embedded actions.")) + if self.env.context.get('active_model') != 'documents.document': + raise UserError(_("Unavailable action.")) + ids = self.env.context.get('active_ids', self.env.context.get('active_id')) + if not ids: + raise UserError(_("Missing documents reference.")) + + embedded_action = self.env['ir.embedded.actions'].browse([action_id]) + if all(action_id in document.available_embedded_actions_ids.ids for document in self.browse(ids)): + return self.env['ir.actions.server'].browse(embedded_action.action_id.id).run() + + raise UserError(_("Unavailable action.")) + + def action_link_to_record(self, model=False): + """Open the `link_to_record_wizard` to choose a record to link to the current documents. + + This method can be used inside server actions. + """ + context = { + 'default_document_ids': self.ids, + 'default_resource_ref': False, + 'default_is_readonly_model': False, + 'default_model_ref': False, + } + + if documents_link_record := self.filtered(lambda d: d.res_model != 'documents.document'): + return { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'params': { + 'type': 'warning', + 'message': _( + "Already linked Documents: %s", + ", ".join(documents_link_record.mapped('name')) + ), + } + } + + if model: + self.env[model].check_access('write') + context['default_is_readonly_model'] = True + context['default_model_id'] = self.env['ir.model']._get_id(model) + first_valid_id = self.env[model].search([], limit=1).id + context['default_resource_ref'] = f'{model},{first_valid_id}' + + return { + 'name': _('Choose a record to link'), + 'type': 'ir.actions.act_window', + 'res_model': 'documents.link_to_record_wizard', + 'view_mode': 'form', + 'target': 'new', + 'views': [(False, "form")], + 'context': context, + } + + def _send_access_by_mail(self, partners, message=""): + """Send a notification email to contacts granted with a new document/folder access. + + :param dict[res.partner(), str] partners: Mapping of partner to new_role: 'edit', 'view'. + :param message: message to add to the email + """ + self.ensure_one() + subject = _('%s shared with you', self.display_name) if self.display_name else _('Access to a folder or a document') + formatted_msg = Markup(message) if message else "" + roles_info = { + (role, lang): { + "body": self.env['ir.qweb'].with_context(lang=lang)._render( + 'documents.mail_template_document_share', + {'record': self, 'user': self.env.user, 'message': formatted_msg} + ), + "role_label": _('Editor') if role == 'edit' else _('Viewer'), + } for role, lang in {(role, partner.lang) for partner, role in partners.items()} + } + + for partner, role in partners.items(): + self.with_context(lang=partner.lang).message_notify( + body=roles_info[role, partner.lang]['body'], + email_layout_xmlid='mail.mail_notification_layout', + partner_ids=partner.ids, + subject=subject, + subtitles=[self.display_name, _('Your Role: %s', roles_info[role, partner.lang]['role_label'])], + ) + + def _notify_get_recipients_groups(self, message, model_description, msg_vals=None): + groups = super()._notify_get_recipients_groups( + message, model_description, msg_vals=msg_vals + ) + if len(self.ids) != 1: + return groups + + group_values = { + 'active': True, + 'button_access': {'url': self.access_url}, + 'has_button_access': True, + } + return [ + ('group_documents_document_people_with_access', + lambda pdata: + (pdata['uid'] and self.with_user(pdata['uid']).user_permission != 'none') or + (pdata['id'] and self.access_via_link != 'none' + and self.access_ids.filtered(lambda a: a.partner_id.id == pdata['id'] and a.role)), + group_values) + ] + groups + + def get_deletion_delay(self): + return int(self.env['ir.config_parameter'].sudo().get_param('documents.deletion_delay', '30')) + + def _get_is_multipage(self): + """Whether the document can be considered multipage, if able to determine. + + :return: `None` if mimetype not handled, `False` if single page or error occurred, `True` otherwise. + :rtype: bool | None + """ + if self.mimetype not in ('application/pdf', 'application/pdf;base64'): + return None + stream = io.BytesIO(base64.b64decode(self.datas)) + try: + return PdfFileReader(stream, strict=False).numPages > 1 + except AttributeError: + raise # If PyPDF's API changes and the `numPages` property isn't there anymore, not if its computation fails. + except Exception: # noqa: BLE001 + _logger.warning('Impossible to count pages in %r. It could be due to a malformed document or a ' + '(possibly known) issue within PyPDF2.', self.name, exc_info=True) + return False + + def _get_models(self, domain): + """ + Return the names of the models to which the attachments are attached. + + :param domain: the domain of the _read_group on documents. + :return: a list of model data, the latter being a dict with the keys + 'id' (technical name), + 'name' (display name) and + '__count' (how many attachments with that domain). + """ + not_a_file = [] + not_attached = [] + models = [] + groups = self._read_group(domain, ['res_model'], ['__count']) + for res_model, count in groups: + if not res_model: + not_a_file.append({ + 'id': res_model, + 'display_name': _('Not a file'), + '__count': count, + }) + elif res_model == 'documents.document': + not_attached.append({ + 'id': res_model, + 'display_name': _('Not attached'), + '__count': count, + }) + else: + models.append({ + 'id': res_model, + 'display_name': self.env['ir.model']._get(res_model).display_name, + '__count': count, + }) + return sorted(models, key=lambda m: m['display_name']) + not_attached + not_a_file + + @api.depends('favorited_ids') + @api.depends_context('uid') + def _compute_is_favorited(self): + favorited = self._filtered_access('read').filtered(lambda d: self.env.user in d.favorited_ids) + favorited.is_favorited = True + (self - favorited).is_favorited = False + + def _inverse_is_favorited(self): + unfavorited_documents = favorited_documents = self.env['documents.document'].sudo() + for document in self: + if self.env.user in document.favorited_ids: + unfavorited_documents |= document + else: + favorited_documents |= document + favorited_documents.write({'favorited_ids': [(4, self.env.uid)]}) + unfavorited_documents.write({'favorited_ids': [(3, self.env.uid)]}) + + @api.depends('res_model') + def _compute_res_model_name(self): + for record in self: + if record.res_model: + record.res_model_name = self.env['ir.model']._get(record.res_model).display_name + else: + record.res_model_name = False + + @api.constrains('url') + def _check_url(self): + for document in self.filtered("url"): + if not document.url.startswith(('https://', 'http://', 'ftp://')): + raise ValidationError(_('URL %s does not seem complete, as it does not begin with http(s):// or ftp://', document.url)) + + @api.model + def message_new(self, msg_dict, custom_values=None): + """When an email comes, create a document with the default values, + then let `_message_post_after_hook` create one document per attachment.""" + custom_values = custom_values or {} + + folder = self.env['documents.document'].browse(custom_values.get('folder_id')) + + custom_values['name'] = _('Mail: %s', msg_dict.get('subject')) + if 'tag_ids' not in custom_values: + custom_values['tag_ids'] = folder.alias_tag_ids.ids + + else: + tags = custom_values['tag_ids'] + if tags and isinstance(tags[0], list | tuple): + # we have a list of m2m commands + if all(len(t) >= 2 and t[0] == Command.LINK for t in tags): + tags = [t[1] for t in tags] + elif len(tags) == 1 and len(tags[0]) == 3 and tags[0][0] == Command.SET: + tags = tags[0][2] + else: # do not support other commands + tags = [] + + custom_values['tag_ids'] = self.env['documents.tag'].browse(tags).exists().ids + + custom_values['active'] = False + return super().message_new(msg_dict, custom_values) + + def _alias_get_creation_values(self): + values = super()._alias_get_creation_values() + values['alias_model_id'] = self.env['ir.model']._get('documents.document').id + if self.id: + values['alias_defaults'] = literal_eval(self.alias_defaults or "{}") + values['alias_defaults'] |= {'folder_id': self.id} + return values + + def _message_post_after_hook(self, message, msg_vals): + """ If the res model was an attachment and a mail, adds all the custom values of the linked + document settings to the attachments of the mail. + """ + m2m_commands = msg_vals['attachment_ids'] + attachments = self.env['ir.attachment'].browse([x[1] for x in m2m_commands]) + if (not self.env.context.get("no_document") or message.message_type == 'email') and attachments: + self.attachment_id = False + documents = self.env['documents.document'].create([{ + 'name': attachment.name, + 'attachment_id': attachment.id, + 'folder_id': self.folder_id.id, + 'owner_id': self.folder_id.owner_id.id or self.env.ref('base.user_root').id, + 'partner_id': self.partner_id.id, + 'tag_ids': self.tag_ids.ids, + } for attachment in attachments]) + + for attachment, document in zip(attachments, documents): + attachment.write({ + 'res_model': 'documents.document', + 'res_id': document.id, + }) + document.message_post( + message_type='email', + body=msg_vals.get('body', ''), + email_from=msg_vals.get('email_from'), + subject=msg_vals.get('subject') or self.name + ) + # Activity settings set through alias_defaults values has precedence over the activity folder settings + if self.create_activity_option: + document.documents_set_activity(settings_record=self) + elif self.folder_id.create_activity_option: + document.documents_set_activity(settings_record=self.folder_id) + + return super()._message_post_after_hook(message, msg_vals) + + def documents_set_activity(self, settings_record=None): + """ + Generate an activity based on the fields of settings_record. + + :param settings_record: the record that contains the activity fields. + settings_record.create_activity_type_id (required) + settings_record.create_activity_summary + settings_record.create_activity_note + settings_record.create_activity_date_deadline_range + settings_record.create_activity_date_deadline_range_type + settings_record.create_activity_user_id + """ + if settings_record and settings_record.create_activity_type_id: + for record in self: + activity_vals = { + 'activity_type_id': settings_record.create_activity_type_id.id, + 'summary': settings_record.create_activity_summary or '', + 'note': settings_record.create_activity_note or '', + } + if settings_record.create_activity_date_deadline_range > 0: + activity_vals['date_deadline'] = fields.Date.context_today(settings_record) + relativedelta( + **{ + settings_record.create_activity_date_deadline_range_type: settings_record.create_activity_date_deadline_range}) + if settings_record._fields.get( + 'create_has_owner_activity') and settings_record.create_has_owner_activity and record.owner_id: + user = record.owner_id + elif settings_record._fields.get('create_activity_user_id') and settings_record.create_activity_user_id: + user = settings_record.create_activity_user_id + elif settings_record._fields.get('user_id') and settings_record.user_id: + user = settings_record.user_id + else: + user = self.env.user + if user: + activity_vals['user_id'] = user.id + record.activity_schedule(**activity_vals) + + def copy_data(self, default=None): + default = dict(default or {}) + vals_list = super().copy_data(default=default) + if 'name' not in default: + for document, vals in zip(self, vals_list): + vals['name'] = document.name if document.type == 'folder' else _("%s (copy)", document.name) + for document, vals in zip(self, vals_list): + # Avoid to propagate folder access as we want to copy the document accesses alone + vals['access_ids'] = default.get('access_ids', False) + if 'owner_id' not in vals: + vals['owner_id'] = self.env.user.id + return vals_list + + def copy(self, default=None): + if not self: + return self + if not all(self.mapped('active')): + raise UserError(_('You cannot duplicate document(s) in the Trash.')) + + # As we avoid to propagate the folder permission by setting access_ids to False (see copy_data), user has no + # right to create the document. So after checking permission, we execute the copy in sudo. + self.check_access("create") + self.check_access('read') + if not self.env.su and self.folder_id and self.folder_id.user_permission != 'edit': + # do not check access to allow copying in root company folders + raise AccessError(_('You cannot copy in that folder')) + + documents_order = {doc.id: idx for idx, doc in enumerate(self)} + new_documents = [self.browse()] * len(self) + + skip_documents = self.env.context.get('documents_copy_folders_only') + + shortcuts = self.filtered('shortcut_document_id') + if not skip_documents: + for destination, targets in shortcuts.grouped('folder_id').items(): + new_shortcuts = targets.action_create_shortcut(destination.id) + for new_shortcut, target in zip(new_shortcuts, targets): + new_documents[documents_order[target.id]] = new_shortcut + + folders = (self - shortcuts).filtered(lambda d: d.type == 'folder') + if folders: + embedded_actions = self._get_folder_embedded_actions(folders.ids) + new_folders = folders.sudo()._copy_with_access(default=default).sudo(False) + for old_folder, new_folder in zip(folders, new_folders): + if folder_embedded_actions := embedded_actions.get(old_folder.id): + embedded_actions_copies = folder_embedded_actions.copy() + embedded_actions_copies.parent_res_id = new_folder.id + # no need to check for permission as user is owner of copies (see copy_data). + old_folder.children_ids.copy({'folder_id': new_folder.id}) + new_documents[documents_order[old_folder.id]] = new_folder + + if not skip_documents and (documents_sudo := (self - shortcuts - folders).sudo()): + new_binaries_sudo = documents_sudo._copy_with_access(default=default) + for old_document_sudo, new_binary_sudo in zip(documents_sudo, new_binaries_sudo): + new_documents[documents_order[old_document_sudo.id]] = new_binary_sudo.sudo(False) + if to_copy_attachment_sudo := documents_sudo._copy_attachment_filter(default): + new_attachments_iterator = iter(to_copy_attachment_sudo.attachment_id.with_context(no_document=True).copy()) + for old_document_sudo, new_binary_sudo in zip(documents_sudo, new_binaries_sudo): + if old_document_sudo._copy_attachment_filter(default): + new_attachment = next(new_attachments_iterator) + new_binary_sudo.write({ + 'attachment_id': new_attachment.id, + # Avoid recompute based on attachment_id + 'name': new_binary_sudo.name, + 'url_preview_image': False, + }) + + return self.browse([new_document.id for new_document in new_documents]) + + def _copy_attachment_filter(self, default): + if default and 'attachment_id' in default: + return self.env['documents.document'] + return self.filtered('attachment_id') + + def _copy_with_access(self, default): + """Copy documents with their access. !Assumes that access rights were checked before! """ + if not self: + return self + res = super().copy(default=default) + if default and 'access_ids' in default: + return res + access_vals_list = [] + for doc, doc_copied in zip(self, res): + access_vals_list += doc.access_ids.filtered('role').copy_data(default={'document_id': doc_copied.id}) + self.env['documents.access'].sudo().create(access_vals_list) + return res + + def toggle_favorited(self): + self.ensure_one() + self.sudo().write({'favorited_ids': [(3 if self.env.user in self[0].favorited_ids else 4, self.env.user.id)]}) + + def access_content(self): + self.ensure_one() + action = { + 'type': "ir.actions.act_url", + 'target': "new", + } + if self.url: + action['url'] = self.url + elif self.type == 'binary': + action['url'] = f'/documents/content/{self.access_token}' + return action + + def open_resource(self): + self.ensure_one() + if self.res_model and self.res_id: + view_id = self.env[self.res_model].get_formview_id(self.res_id) + return { + 'res_id': self.res_id, + 'res_model': self.res_model, + 'type': 'ir.actions.act_window', + 'views': [[view_id, 'form']], + } + + def toggle_lock(self): + """ + sets a lock user, the lock user is the user who locks a file for themselves, preventing data replacement + and archive (therefore deletion) for any user but himself. + + Members of the group documents.group_documents_manager and the superuser can unlock the file regardless. + """ + self.ensure_one() + if self.lock_uid: + if self.env.user == self.lock_uid or self.env.is_admin() or self.env.user.has_group('documents.group_documents_manager'): + self.lock_uid = False + else: + self.lock_uid = self.env.uid + + @api.depends_context('uid') + @api.depends('lock_uid') + def _compute_is_locked(self): + for record in self: + record.is_locked = record.lock_uid and not ( + self.env.user == record.lock_uid or + self.env.is_admin() or + self.env.user.has_group('documents.group_documents_manager')) + + def action_archive(self): + if not self: + return + + to_archive_sudo = self.sudo().with_context(active_test=False).search([('id', 'child_of', self.ids)]) + active_documents = to_archive_sudo.filtered(self._active_name).sudo(False) + if not active_documents: + return + + # As document archiving leads to deletion + message = _("You do not have sufficient access rights to delete these documents.") + try: + active_documents.check_access('unlink') + except UserError as e: + raise AccessError(message) from e + # As edit on parent is required to restore (and as removing a file is also somehow modifying the folder) + if folder_ids := self.folder_id: + if any(permission != 'edit' for permission in folder_ids.mapped('user_permission')): + raise UserError(message) + + active_documents._raise_if_used_folder() + deletion_date = fields.Date.to_string(fields.Date.today() + relativedelta(days=self.get_deletion_delay())) + log_message = _("This file has been sent to the trash and will be deleted forever on the %s", deletion_date) + active_documents._message_log_batch(bodies={doc.id: log_message for doc in active_documents}) + return super(Document, active_documents).action_archive() + + def action_unarchive(self): + self_archived = self.filtered(lambda d: not d.active) + if not self_archived: + return + archived_top_parent_documents = self.env["documents.document"].sudo().search( + expression.AND([ + [('id', 'parent_of', self_archived.ids)], + [('id', 'not in', self_archived.ids)], + [('active', '=', False)], + expression.OR([ + [('folder_id', '=', False)], + [('folder_id.active', '=', True)], + ]) + ]) + ).sudo(False) + if archived_top_parent_documents: + raise UserError(_( + "Item(s) you wish to restore are included in archived folders. " + "To restore these items, you must restore the following including folders instead:\n" + "- %(folders_list)s", + folders_list="\n-".join(archived_top_parent_documents.mapped('name')))) # "Restricted" if not allowed + + # Leave archived children (and descendants) the current user doesn't have access to. + to_unarchive_candidate_documents = self.env['documents.document'].with_context(active_test=False).search( + [('id', 'child_of', self_archived.ids)]) + + seen_documents, to_unarchive_ids = set(), set() + + def add_if_can_be_restored(doc): + if doc in seen_documents or seen_documents.add(doc): + return doc.id in to_unarchive_ids + if not doc.folder_id or doc.folder_id.sudo().active or add_if_can_be_restored(doc.folder_id): + to_unarchive_ids.add(doc.id) + return True + return False + + for document in to_unarchive_candidate_documents: + add_if_can_be_restored(document) + to_unarchive_documents = to_unarchive_candidate_documents.filtered(lambda d: d.id in to_unarchive_ids) + log_message = _("This document has been restored.") + to_unarchive_documents._message_log_batch(bodies={doc.id: log_message for doc in to_unarchive_documents}) + return super(Document, to_unarchive_documents).action_unarchive() + + @api.model_create_multi + def create(self, vals_list): + """Access rights fields (access_ids), access_internal, and access_via_link are inherited from containing folder + unless specified in vals or context defaults. + """ + attachments = [] + for vals in vals_list: + keys = [key for key in vals if + self._fields[key].related and self._fields[key].related.split('.')[0] == 'attachment_id'] + attachment_dict = {key: vals.pop(key) for key in keys if key in vals} + attachment = self.env['ir.attachment'].browse(vals.get('attachment_id')) + + if attachment and attachment_dict: + attachment.write(attachment_dict) + elif attachment_dict: + attachment_dict.setdefault('name', vals.get('name', 'unnamed')) + # default_res_model and default_res_id will cause unique constraints to trigger. + attachment = self.env['ir.attachment'].with_context(clean_context(self.env.context)).create(attachment_dict) + vals['attachment_id'] = attachment.id + vals['name'] = vals.get('name', attachment.name) + attachments.append(attachment) + + # don't allow using default_access_ids + documents = super(Document, self.with_context(default_access_ids=None)).create(vals_list) + + is_manager = self.env.is_admin() or self.env.user.has_group('documents.group_documents_manager') + if not is_manager: + if any(d.alias_name for d in documents): + raise AccessError(_('Only Documents Managers can set aliases.')) + if any(d.is_pinned_folder for d in documents): + raise AccessError(_('Only Documents Managers can create in company folder.')) + + for document, attachment in zip(documents, attachments): + if attachment and not attachment.res_id and ( + not attachment.res_model or attachment.res_model == 'documents.document'): + attachment.with_context(no_document=True).write({ + 'res_model': 'documents.document', + 'res_id': document.id}) + return documents + + def _prepare_create_values(self, vals_list): + old_vals_list = [vals.copy() for vals in vals_list] + vals_list = super()._prepare_create_values(vals_list) + folders = self.env['documents.document'].browse(v['folder_id'] for v in vals_list if v.get('folder_id')) + users = self.env['res.users'].browse(v['owner_id'] for v in vals_list if v.get('owner_id')) + folders.fetch(('access_internal', 'access_via_link', 'access_ids', 'active', 'owner_id')) + (users | folders.owner_id).fetch(['partner_id']) + odoobot = self.env.ref('base.user_root') + vals_list_to_update_linked_record = [] + for vals, old_vals in zip(vals_list, old_vals_list): + owner = self.env['res.users'].browse(vals.get('owner_id', self.env.user.id)) + owner_values = {'partner_id': owner.partner_id.id, 'role': False, 'last_access_date': fields.Datetime.now()} + vals_values = { + 'owner_id': owner.id, + 'access_ids': [Command.create(owner_values)] if owner != odoobot else [] + } + if vals.get('folder_id'): + folder = self.env['documents.document'].browse(vals['folder_id']) + if not folder.active: + raise UserError('It is not possible to create documents in an archived folder.') + vals_values.update({ + 'access_via_link': folder.access_via_link, + 'access_internal': folder.access_internal, + 'access_ids': + vals_values['access_ids'] + + [ + Command.create({'partner_id': access.partner_id.id, 'role': access.role}) + for access in folder.access_ids + if access.role and access.partner_id != owner.partner_id + ] + ([Command.create({'partner_id': folder.owner_id.partner_id.id, 'role': 'edit'})] + if folder.owner_id != odoobot and folder.owner_id != owner else [] + ), + }) + vals.update((k, v) for k, v in vals_values.items() if k not in old_vals) + + # If res_model and res_id are not set, we must get it from the related attachment if set (prepare list) + if 'res_model' not in vals and 'res_id' not in vals and isinstance(vals.get('attachment_id'), int): + vals_list_to_update_linked_record.append(vals) + + # For the next step, we need to ensure the related ref is present by getting it from attachment if needed + if vals_list_to_update_linked_record: + attachment_by_id = self.env['ir.attachment'].browse( + [vals['attachment_id'] for vals in vals_list_to_update_linked_record]).grouped('id') + for vals in vals_list_to_update_linked_record: + attachment = attachment_by_id[vals['attachment_id']] + vals['res_model'] = attachment.res_model + vals['res_id'] = attachment.res_id + # Delegate vals_list update to _prepare_create_values_for_model to add values depending on related record + updated_vals_list = [] + for res_model, model_vals_tuple_list in groupby(zip(vals_list, old_vals_list), lambda v: v[0].get('res_model')): + updated_vals_list += self._prepare_create_values_for_model( + res_model, + [vals_tuple[0] for vals_tuple in model_vals_tuple_list], + [vals_tuple[1] for vals_tuple in model_vals_tuple_list], + ) + return updated_vals_list + + def _prepare_create_values_for_model(self, res_model, vals_list, pre_vals_list): + """Override to add values depending on related model/record""" + if ( + res_model + and issubclass(self.pool[res_model], self.pool['documents.mixin']) + and not self._context.get('no_document') + ): + return self.env[res_model]._prepare_document_create_values_for_linked_records( + res_model, vals_list, pre_vals_list) + return vals_list + + def write(self, vals): + if 'shortcut_document_id' in vals: + raise UserError(_("Shortcuts cannot change target document.")) + + is_manager = self.env.is_admin() or self.env.user.has_group('documents.group_documents_manager') + pinned_folders_start = self.filtered('is_pinned_folder') + + shortcuts_to_check_owner_target_access = self.browse() + + if (owner_id := vals.get('owner_id')) is not None: + if not isinstance(owner_id, int): # recordset + owner_id = owner_id.id + if not is_manager and any(d.owner_id != self.env.user for d in self): + raise AccessError(_("You cannot change the owner of documents you do not own.")) + + targets_changing_owner = self.filtered(lambda d: d.owner_id.id != owner_id) + shortcuts_to_check_owner_target_access |= targets_changing_owner.shortcut_ids.filtered( + lambda d: d.owner_id == d.shortcut_document_id.owner_id) + + if folder_id := vals.get('folder_id'): + folder = self.env['documents.document'].browse(folder_id) + if not self.env.su and folder.user_permission != 'edit': + raise AccessError(_("You can't access that folder_id.")) + if folder.type != 'folder' or folder.shortcut_document_id: + raise UserError(_("Invalid folder id")) + if any(not d.active or not folder.active or d.folder_id and not d.folder_id.active for d in self): + raise UserError(_("It is not possible to move archived documents or documents to archived folders.")) + + if vals.get('active') is False: + if self.env.user.share: + raise UserError(_("You are not allowed to (un)archive documents.")) + self.check_access('unlink') # As archived gc leads to unlink after `deletion_delay` days. + + attachment_id = vals.get('attachment_id') + if attachment_id: + self.ensure_one() + + attachments_was_present = [] + for record in self: + attachments_was_present.append(bool(record.attachment_id)) + if record.type == 'binary' and not record.datas and ('datas' in vals or 'url' in vals): + body = _("Document Request: %(name)s Uploaded by: %(user)s", name=record.name, user=self.env.user.name) + record.with_context(no_document=True).message_post(body=body) + + if record.attachment_id: + # versioning + if attachment_id and attachment_id != record.attachment_id.id: + # Link the new attachment to the related record and link the previous one + # to the document. + self.env["ir.attachment"].browse(attachment_id).with_context( + no_document=True + ).write( + { + "res_model": record.res_model or "documents.document", + "res_id": record.res_id if record.res_model else record.id, + } + ) + related_record = self.env[record.res_model].browse(record.res_id) + if ( + not hasattr(related_record, "message_main_attachment_id") + or related_record.message_main_attachment_id + != record.attachment_id + ): + record.attachment_id.with_context(no_document=True).write( + {"res_model": "documents.document", "res_id": record.id} + ) + if attachment_id in record.previous_attachment_ids.ids: + record.previous_attachment_ids = [(3, attachment_id, False)] + record.previous_attachment_ids = [(4, record.attachment_id.id, False)] + if 'datas' in vals: + old_attachment = record.attachment_id.with_context(no_document=True).copy() + # removes the link between the old attachment and the record. + old_attachment.write({ + 'res_model': 'documents.document', + 'res_id': record.id, + }) + record.previous_attachment_ids = [(4, old_attachment.id, False)] + elif vals.get('datas') and not vals.get('attachment_id'): + res_model = vals.get('res_model', record.res_model or 'documents.document') + res_id = vals.get('res_id') if vals.get('res_model') else record.res_id if record.res_model else record.id + if res_model and res_model != 'documents.document' and not self.env[res_model].browse(res_id).exists(): + record.res_model = res_model = 'documents.document' + record.res_id = res_id = record.id + attachment = self.env['ir.attachment'].with_context(no_document=True).create({ + 'name': vals.get('name', record.name), + 'res_model': res_model, + 'res_id': res_id + }) + record.attachment_id = attachment.id + + # pops the datas and/or the mimetype key(s) to explicitly write them in batch on the ir.attachment + # so the mimetype is properly set. The reason was because the related keys are not written in batch + # and because mimetype is readonly on `ir.attachment` (which prevents writing through the related). + attachment_dict = {key: vals.pop(key) for key in ['datas', 'mimetype'] if key in vals} + + if not is_manager and set(vals) & set(self.env['mail.alias.mixin']._fields): + raise AccessError(_('Only Documents managers can set an alias.')) + + write_result = super().write(vals) + if attachment_dict: + self.mapped('attachment_id').write(attachment_dict) + + if 'attachment_id' in vals: + self.attachment_id.check('read') + + if (new_active := vals.get('active')) is not None: + if not new_active and self.sudo().search([('id', 'child_of', self.ids), ('active', '=', True)]): + raise UserError(_('Operation not supported. Please use "Move to Trash" / `action_archive` instead.')) + if new_active and self.sudo().search([('id', 'parent_of', self.ids), ('active', '=', False)]): + raise UserError(_('Operation not supported. Please use "Restore" / `action_unarchive` instead.')) + + if not is_manager and self.filtered('is_pinned_folder') != pinned_folders_start: + raise AccessError(_("Only Documents Managers can create in company folder.")) + + for document, attachment_was_present in zip(self, attachments_was_present): + if document.request_activity_id and document.attachment_id and not attachment_was_present: + feedback = _("Document Request: %(name)s Uploaded by: %(user)s", + name=self.name, user=self.env.user.name) + document.with_context(no_document=True).request_activity_id.action_feedback( + feedback=feedback, attachment_ids=[document.attachment_id.id]) + + if (company_id := vals.get('company_id')) and self.shortcut_ids: # no need if resetting company_id to False + self.shortcut_ids.sudo().write({'company_id': company_id}) + + if shortcuts_to_check_owner_target_access: + shortcuts_to_check_owner_target_access._unlink_shortcut_if_target_inaccessible() + + return write_result + + @api.model + def _pdf_split(self, new_files=None, open_files=None, vals=None): + vals = vals or {} + new_attachments = self.env['ir.attachment']._pdf_split(new_files=new_files, open_files=open_files) + new_documents = self.create([ + dict(vals, attachment_id=attachment.id) for attachment in new_attachments + ]) + # Prevent concurrent update error on accessing these documents for the first time on exiting the split tool + env_partner = self.env.user.partner_id + documents_not_member = new_documents.filtered(lambda d: env_partner not in d.access_ids.partner_id) + self.env['documents.access'].sudo().create([ + {'document_id': doc.id, 'partner_id': env_partner.id, 'last_access_date': fields.Datetime.now()} + for doc in documents_not_member + ]) + return new_documents + + @api.model + def search_panel_select_range(self, field_name, **kwargs): + if field_name == 'folder_id': + enable_counters = kwargs.get('enable_counters', False) + search_panel_fields = ['access_token', 'company_id', 'description', 'display_name', 'folder_id', + 'is_favorited', 'is_pinned_folder', 'owner_id', 'shortcut_document_id', + 'user_permission'] + domain = [('type', '=', 'folder')] + + if unique_folder_id := self.env.context.get('documents_unique_folder_id'): + values = self.env['documents.document'].search_read( + expression.AND([domain, [('folder_id', 'child_of', unique_folder_id)]]), + search_panel_fields, + load=False, + ) + accessible_folder_ids = {rec['id'] for rec in values} + for record in values: + if record['folder_id'] not in accessible_folder_ids: + record['folder_id'] = False # consider them as roots + return { + 'parent_field': 'folder_id', + 'values': values, + } + + records = self.env['documents.document'].search_read(domain, search_panel_fields) + accessible_folder_ids = {rec['id'] for rec in records} + + domain_image = {} + if enable_counters: + model_domain = expression.AND([ + kwargs.get('search_domain', []), + kwargs.get('category_domain', []), + kwargs.get('filter_domain', []), + [(field_name, '!=', False)] + ]) + domain_image = self._search_panel_domain_image(field_name, model_domain, enable_counters) + + values_range = OrderedDict() + shared_root_id = "SHARED" if not self.env.user.share else False + for record in records: + record_id = record['id'] + if enable_counters: + image_element = domain_image.get(record_id) + record['__count'] = image_element['__count'] if image_element else 0 + folder_id = record['folder_id'] + if folder_id: + folder_id = folder_id[0] + if folder_id not in accessible_folder_ids: + if record['shortcut_document_id']: + continue + folder_id = shared_root_id + elif record['owner_id'][0] == self.env.user.id: + folder_id = "MY" + elif record['owner_id'][0] != self.env.ref('base.user_root').id or self.env.user.share: + if record['shortcut_document_id']: + continue + folder_id = shared_root_id + else: + folder_id = "COMPANY" + + record['folder_id'] = folder_id + values_range[record_id] = record + + if enable_counters: + self._search_panel_global_counters(values_range, 'folder_id') + + special_roots = [] + if not self.env.user.share: + special_roots = [ + {'bold': True, 'childrenIds': [], 'parentId': False, 'user_permission': 'edit'} | values + for values in [ + { + 'display_name': _("Company"), + 'id': 'COMPANY', + 'description': _("Common roots for all company users."), + 'user_permission': 'view', + }, { + 'display_name': _("My Drive"), + 'id': 'MY', + 'user_permission': 'edit', + 'description': _("Your individual space."), + }, { + 'display_name': _("Shared with me"), + 'id': 'SHARED', + 'description': _("Additional documents you have access to."), + }, { + 'display_name': _("Recent"), + 'id': 'RECENT', + 'description': _("Recently accessed documents."), + }, { + 'display_name': _("Trash"), + 'id': 'TRASH', + 'description': _("Items in trash will be deleted forever after %s days.", + self.get_deletion_delay()), + }] + ] + + return { + 'parent_field': 'folder_id', + 'values': list(values_range.values()) + special_roots, + } + + return super().search_panel_select_range(field_name) + + @api.model + def get_document_max_upload_limit(self): + ICP = self.env['ir.config_parameter'].sudo() + for key in ('document.max_fileupload_size', 'web.max_file_upload_size'): + value = ICP.get_param(key, default=None) + if value is None: + continue + try: + return int(value) or None + except ValueError: + _logger.error("invalid %s: %r", key, value) + return odoo.http.DEFAULT_MAX_CONTENT_LENGTH + + @api.model + def can_upload_traceback(self): + return self.env.user._is_internal and \ + bool(self.env.ref('documents.document_support_folder', raise_if_not_found=False)) + + def unlink(self): + """Clean unused linked records too. + + This applies to: + * Children documents when deleting the parent folder + * Parent folder if it is archived and has no other children and user is allowed to + * Attachment if document-related record is deleted + """ + to_delete = self.sudo().with_context(active_test=False).search([('id', 'child_of', self.ids)]).sudo(False) + removable_parent_folders = self.with_context(active_test=False).folder_id.filtered( + lambda folder: len(folder.children_ids - self) == 0 and not folder.active) + removable_attachments = self.filtered(lambda d: d.res_model != d._name).attachment_id + + res = super(Document, to_delete).unlink() + + if removable_attachments: + removable_attachments.unlink() + if removable_parent_folders: + with contextlib.suppress(AccessError): + removable_parent_folders.unlink() + return res + + @api.ondelete(at_uninstall=False) + def _unlink_except_unauthorized(self): + try: + self.check_access('unlink') + except UserError as e: # Hide potentially unknown inaccessible content's name. + raise UserError(_("You are not allowed to delete all these items.")) from e + + @api.ondelete(at_uninstall=False) + def _unlink_except_company_folders(self): + self._raise_if_used_folder() + + def _raise_if_used_folder(self): + if folder_ids := self.filtered(lambda d: d.type == 'folder').ids: + company_field_names = [ + company_field_name + for company_field_name, field in self.env['res.company']._fields.items() + if field.comodel_name == "documents.document" + ] + if self.env['res.company'].search_count(expression.OR([ + [(field_name, 'in', folder_ids)] for field_name in company_field_names + ]), limit=1): + raise ValidationError(_("Impossible to delete folders used by other applications.")) + + def _unlink_shortcut_if_target_inaccessible(self): + """As a fix in stable version, delete shortcuts when target is no longer accessible to the owner.""" + for owner, shortcuts in self.filtered('shortcut_document_id').grouped("owner_id").items(): + shortcuts_as_owner_sudo = shortcuts.with_user(owner).sudo() + shortcuts_as_owner_sudo.filtered(lambda d: d.shortcut_document_id.user_permission == 'none').unlink() + + @api.autovacuum + def _gc_clear_bin(self): + """Files are deleted automatically from the trash bin after the configured remaining days.""" + deletion_delay = self.get_deletion_delay() + self.search([ + ('active', '=', False), + ('write_date', '<=', fields.Datetime.now() - relativedelta(days=deletion_delay)), + ], limit=1000).unlink() + + def _get_access_action(self, access_uid=None, force_website=False): + self.ensure_one() + if access_uid and not force_website and self.active and self.env.user.has_group("documents.group_documents_user"): + url_params = url_encode({ + 'preview_id': self.id, + 'view_id': self.env.ref("documents.document_view_kanban").id, + 'menu_id': self.env.ref("documents.menu_root").id, + 'folder_id': self.folder_id.id, + }) + + return { + "type": "ir.actions.act_url", + "url": f"/odoo/action-documents.document_action?{url_params}" + } + return super()._get_access_action(access_uid=access_uid, force_website=force_website) + + @api.readonly + def permission_panel_data(self): + """Provide access related data for a given document/folder""" + specification = self._permission_specification() + self.check_access('read') + result = self.sudo().with_context(active_test=False).web_search_read([('id', '=', self.id)], specification) + record = result['records'][0] + selections = {'access_via_link': self._fields.get('access_via_link').selection} + if self.env.user.has_group('base.group_user'): + record['access_ids'] = [a for a in record['access_ids'] if a['role']] + if record['owner_id']['id'] == self.env.ref('base.user_root').id: + record['owner_id'] = False # Only a real user should be shown in the panel + selections.update({ + 'access_internal': self._fields.get('access_internal').selection, + 'doc_access_roles': self.env['documents.access']._fields.get('role').selection, + }) + return {'record': record, 'selections': selections} + + def _permission_specification(self): + specification = { + 'access_internal': {}, + 'access_via_link': {}, + 'access_url': {}, + 'active': {}, + 'display_name': {}, + 'folder_id': {}, + 'is_access_via_link_hidden': {}, + 'type': {}, + 'user_permission': {}, + } + + if self.env.user.has_group('base.group_user'): + partner_id_spec = {'fields': {'email': {}, 'name': {}, 'user_id': {}}} + specification.update({ + 'access_ids': { + 'fields': { + 'document_id': {}, + 'partner_id': partner_id_spec, + 'role': {}, + 'expiration_date': {}, + }, + }, + 'owner_id': { + 'fields': { + 'partner_id': partner_id_spec, + }, + } + }) + + return specification diff --git a/addons_extensions/documents/models/documents_mixin.py b/addons_extensions/documents/models/documents_mixin.py new file mode 100644 index 000000000..a9fde2263 --- /dev/null +++ b/addons_extensions/documents/models/documents_mixin.py @@ -0,0 +1,143 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import Command, models + + +class DocumentMixin(models.AbstractModel): + """ + Inherit this mixin to automatically create a `documents.document` when + an `ir.attachment` is linked to a record and add the default values when + creating a document related to the model that inherits from this mixin. + + Override this mixin's methods to specify an owner, a folder, tags or + access_rights for the document. + + Note: this mixin can be disabled with the context variable "no_document=True". + """ + _name = 'documents.mixin' + _inherit = 'documents.unlink.mixin' + _description = "Documents creation mixin" + + def _get_document_vals(self, attachment): + """ + Return values used to create a `documents.document` + """ + self.ensure_one() + document_vals = {} + if self._check_create_documents(): + access_rights_vals = self._get_document_vals_access_rights() + if set(access_rights_vals) - {'access_via_link', 'access_internal', 'is_access_via_link_hidden'}: + raise ValueError("Invalid access right values") + document_vals = { + 'attachment_id': attachment.id, + 'name': attachment.name or self.display_name, + 'folder_id': self._get_document_folder().id, + 'owner_id': self._get_document_owner().id, + 'partner_id': self._get_document_partner().id, + 'tag_ids': [(6, 0, self._get_document_tags().ids)], + } | access_rights_vals + return document_vals + + def _get_document_vals_access_rights(self): + """ Return access rights values to create a `documents.document` + + In the default implementation, we give the minimal permission and rely on the propagation of the folder + permission but this method can be overridden to set more open rights. + + Authorized fields: access_via_link, access_internal, is_access_via_link_hidden. + Note: access_ids are handled differently because when set, it prevents inheritance from the parent folder + (see specific document override). + """ + return { + 'access_via_link': 'none', + 'access_internal': 'none', + 'is_access_via_link_hidden': True, + } + + def _get_document_owner(self): + """ Return the owner value to create a `documents.document` + + In the default implementation, we return OdooBot as owner to avoid giving full access to a user and to rely + instead on explicit access managed via `document.access` or via parent folder access inheritance but this + method can be overridden to for example give the ownership to the current user. + """ + return self.env.ref('base.user_root') + + def _get_document_tags(self): + return self.env['documents.tag'] + + def _get_document_folder(self): + return self.env['documents.document'] + + def _get_document_partner(self): + return self.env['res.partner'] + + def _get_document_access_ids(self): + """ Add or remove members + + :return boolean|list: list of tuple (partner, (role, expiration_date)) or False to avoid + inheriting members from parent folder. + """ + return [] + + def _check_create_documents(self): + return bool(self and self._get_document_folder()) + + def _prepare_document_create_values_for_linked_records( + self, res_model, vals_list, pre_vals_list): + """ Set default value defined on the document mixin implementation of the related record if there are not + explicitly set. + + :param str res_model: model referenced by the documents to consider + :param list[dict] vals_list: list of values + :param list[dict] pre_vals_list: list of values before _prepare_create_values (no permission inherited yet) + + Note: + - This method doesn't override existing values (permission, owner, ...). + - The related record res_model must inherit from DocumentMixin + """ + if self._name != res_model: + raise ValueError(f'Invalid model {res_model} (expected {self._name})') + + related_record_by_id = self.env[res_model].browse([ + res_id for vals in vals_list if (res_id := vals.get('res_id'))]).grouped('id') + for vals, pre_vals in zip(vals_list, pre_vals_list): + if not vals.get('res_id'): + continue + related_record = related_record_by_id.get(vals['res_id']) + vals.update( + { + 'owner_id': pre_vals.get('owner_id', related_record._get_document_owner().id), + 'partner_id': pre_vals.get('partner_id', related_record._get_document_partner().id), + 'tag_ids': pre_vals.get('tag_ids', [(6, 0, related_record._get_document_tags().ids)]), + } | { + key: value + for key, value in related_record._get_document_vals_access_rights().items() + if key not in pre_vals + }) + if 'access_ids' in pre_vals: + continue + access_ids = vals.get('access_ids') or [] + partner_with_access = {access[2]['partner_id'] for access in access_ids} # list of Command.create tuples + related_document_access = related_record._get_document_access_ids() + if related_document_access is False: + # Keep logs but remove members + access_ids = [a for a in access_ids if not a[2].get('role')] + else: + accesses_to_add = [ + (partner, access) + for partner, access in related_record._get_document_access_ids() + if partner.id not in partner_with_access + ] + if accesses_to_add: + access_ids.extend( + Command.create({ + 'partner_id': partner.id, + 'role': role, + 'expiration_date': expiration_date, + }) + for partner, (role, expiration_date) in accesses_to_add + ) + vals['access_ids'] = access_ids + return vals_list diff --git a/addons_extensions/documents/models/documents_redirect.py b/addons_extensions/documents/models/documents_redirect.py new file mode 100644 index 000000000..ea0278500 --- /dev/null +++ b/addons_extensions/documents/models/documents_redirect.py @@ -0,0 +1,29 @@ +from odoo import api, fields, models + + +class DocumentRedirect(models.Model): + """Model used to keep the old links valid after the 18.0 migration. + + Do *NOT* use that model or inherit from it, it will be removed in the future. + """ + + _name = "documents.redirect" + _description = "Document Redirect" + _log_access = False + + access_token = fields.Char(required=True, index="btree") + document_id = fields.Many2one("documents.document", ondelete="cascade") + + @api.model + def _get_redirection(self, access_token): + """Redirect to the right document, only if its access is view. + + We won't redirect if the access is not "view" to not give write access + if the permission has been changed on the document (or to not give the + token if the access is "none"). + """ + return self.search( + # do not give write access for old token + [("access_token", "=", access_token), ('document_id.access_via_link', '=', 'view')], + limit=1, + ).document_id diff --git a/addons_extensions/documents/models/documents_share.py b/addons_extensions/documents/models/documents_share.py new file mode 100644 index 000000000..e69de29bb diff --git a/addons_extensions/documents/models/documents_tag.py b/addons_extensions/documents/models/documents_tag.py new file mode 100644 index 000000000..49e31c0ea --- /dev/null +++ b/addons_extensions/documents/models/documents_tag.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from random import randint + +from odoo import _, api, models, fields +from odoo.exceptions import UserError + + +class Tags(models.Model): + _name = "documents.tag" + _description = "Tag" + _order = "sequence, name" + + @api.model + def _get_default_color(self): + return randint(1, 11) + + name = fields.Char(required=True, translate=True) + sequence = fields.Integer('Sequence', default=10) + color = fields.Integer('Color', default=_get_default_color) + tooltip = fields.Char(help="Text shown when hovering on this tag", string="Tooltip") + document_ids = fields.Many2many('documents.document', 'document_tag_rel') + + _sql_constraints = [ + ('tag_name_unique', 'unique (name)', "Tag name already used"), + ] + + @api.model + def _get_tags(self, domain): + """ + fetches the tag and facet ids for the document selector (custom left sidebar of the kanban view) + """ + tags = self.env['documents.document'].search(domain).tag_ids + return [ + { + 'sequence': tag.sequence, + 'id': tag.id, + 'color': tag.color, + '__count': len(tag.document_ids) + } for tag in tags + ] + + @api.ondelete(at_uninstall=False) + def _unlink_except_used_in_server_action(self): + external_ids = self._get_external_ids() + if external_ids and self.env['ir.actions.server'].search_count([('resource_ref', 'in', external_ids)], limit=1): + raise UserError(_("You cannot delete tags used in server actions.")) diff --git a/addons_extensions/documents/models/documents_unlink_mixin.py b/addons_extensions/documents/models/documents_unlink_mixin.py new file mode 100644 index 000000000..fa55818fb --- /dev/null +++ b/addons_extensions/documents/models/documents_unlink_mixin.py @@ -0,0 +1,26 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models + + +class DocumentUnlinkMixin(models.AbstractModel): + """Send the related documents to trash when the record is deleted.""" + _name = 'documents.unlink.mixin' + _description = "Documents unlink mixin" + + def unlink(self): + """Prevent deletion of the attachments / documents and send them to the trash instead.""" + documents = self.env['documents.document'].search([ + ('res_model', '=', self._name), + ('res_id', 'in', self.ids), + ('active', '=', True), + ]) + + for document in documents: + document.write({ + 'res_model': 'documents.document', + 'res_id': document.id, + 'active': False, + }) + + return super().unlink() diff --git a/addons_extensions/documents/models/ir_attachment.py b/addons_extensions/documents/models/ir_attachment.py new file mode 100644 index 000000000..6c6392dd3 --- /dev/null +++ b/addons_extensions/documents/models/ir_attachment.py @@ -0,0 +1,87 @@ +# -*- coding: utf-8 -*- + +import base64 +import io + +from odoo import models, api +from odoo.tools.pdf import PdfFileWriter, PdfFileReader + + +class IrAttachment(models.Model): + _inherit = ['ir.attachment'] + + @api.model + def _pdf_split(self, new_files=None, open_files=None): + """Creates and returns new pdf attachments based on existing data. + + :param new_files: the array that represents the new pdf structure: + [{ + 'name': 'New File Name', + 'new_pages': [{ + 'old_file_index': 7, + 'old_page_number': 5, + }], + }] + :param open_files: array of open file objects. + :returns: the new PDF attachments + """ + vals_list = [] + pdf_from_files = [PdfFileReader(open_file, strict=False) for open_file in open_files] + for new_file in new_files: + output = PdfFileWriter() + for page in new_file['new_pages']: + input_pdf = pdf_from_files[int(page['old_file_index'])] + page_index = page['old_page_number'] - 1 + output.addPage(input_pdf.getPage(page_index)) + with io.BytesIO() as stream: + output.write(stream) + vals_list.append({ + 'name': new_file['name'] + ".pdf", + 'datas': base64.b64encode(stream.getvalue()), + }) + return self.create(vals_list) + + def _create_document(self, vals): + """ + Implemented by bridge modules that create new documents if attachments are linked to + their business models. + + :param vals: the create/write dictionary of ir attachment + :return True if new documents are created + """ + # Special case for documents + if vals.get('res_model') == 'documents.document' and vals.get('res_id'): + document = self.env['documents.document'].browse(vals['res_id']) + if document.exists() and not document.attachment_id: + document.attachment_id = self[0].id + return False + + # Generic case for all other models + res_model = vals.get('res_model') + res_id = vals.get('res_id') + model = self.env.get(res_model) + if model is not None and res_id and issubclass(self.pool[res_model], self.pool['documents.mixin']): + vals_list = [ + model.browse(res_id)._get_document_vals(attachment) + for attachment in self + if not attachment.res_field and model.browse(res_id)._check_create_documents() + ] + vals_list = [vals for vals in vals_list if vals] # Remove empty values + self.env['documents.document'].create(vals_list) + return True + return False + + @api.model_create_multi + def create(self, vals_list): + attachments = super().create(vals_list) + for attachment, vals in zip(attachments, vals_list): + # the context can indicate that this new attachment is created from documents, and therefore + # doesn't need a new document to contain it. + if not self._context.get('no_document') and not attachment.res_field: + attachment.sudo()._create_document(dict(vals, res_model=attachment.res_model, res_id=attachment.res_id)) + return attachments + + def write(self, vals): + if not self._context.get('no_document'): + self.filtered(lambda a: not (vals.get('res_field') or a.res_field)).sudo()._create_document(vals) + return super(IrAttachment, self).write(vals) diff --git a/addons_extensions/documents/models/ir_binary.py b/addons_extensions/documents/models/ir_binary.py new file mode 100644 index 000000000..45d801e87 --- /dev/null +++ b/addons_extensions/documents/models/ir_binary.py @@ -0,0 +1,31 @@ +from os.path import splitext +from odoo import models + + +class IrBinary(models.AbstractModel): + _inherit = 'ir.binary' + + def _record_to_stream(self, record, field_name): + if record._name == 'documents.document' and field_name in ('raw', 'datas', 'db_datas'): + # Read access to document give implicit read access to the attachment + return super()._record_to_stream(record.attachment_id.sudo(), field_name) + + return super()._record_to_stream(record, field_name) + + def _get_stream_from( + self, record, field_name='raw', filename=None, filename_field='name', mimetype=None, + default_mimetype='application/octet-stream', + ): + # skip magic detection of the file extension when it is provided + if (record._name == 'documents.document' + and filename is None + and record.file_extension + ): + name, extension = splitext(record.name) + if extension == f'.{record.file_extension}': + filename = record.name + else: + filename = f'{name}.{record.file_extension}' + + return super()._get_stream_from( + record, field_name, filename, filename_field, mimetype, default_mimetype) diff --git a/addons_extensions/documents/models/mail_activity.py b/addons_extensions/documents/models/mail_activity.py new file mode 100644 index 000000000..d7d0b9166 --- /dev/null +++ b/addons_extensions/documents/models/mail_activity.py @@ -0,0 +1,99 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from datetime import datetime + +from odoo import api, models, fields, _ +from odoo.osv import expression + + +class MailActivity(models.Model): + _inherit = 'mail.activity' + + def _prepare_next_activity_values(self): + vals = super()._prepare_next_activity_values() + current_activity_type = self.activity_type_id + next_activity_type = current_activity_type.triggered_next_type_id + + if current_activity_type.category == 'upload_file' and self.res_model == 'documents.document' and next_activity_type.category == 'upload_file': + existing_document = self.env['documents.document'].search([('request_activity_id', '=', self.id)], limit=1) + if 'summary' not in vals: + vals['summary'] = self.summary or _('Upload file request') + new_doc_request = self.env['documents.document'].create({ + 'owner_id': existing_document.owner_id.id, + 'folder_id': next_activity_type.folder_id.id if next_activity_type.folder_id else existing_document.folder_id.id, + 'tag_ids': [(6, 0, next_activity_type.tag_ids.ids)], + 'name': vals['summary'], + }) + vals['res_id'] = new_doc_request.id + return vals + + def _action_done(self, feedback=False, attachment_ids=None): + if not self: + return super()._action_done(feedback=feedback, attachment_ids=attachment_ids) + documents = self.env['documents.document'].search([('request_activity_id', 'in', self.ids)]) + document_without_attachment = documents.filtered(lambda d: not d.attachment_id) + if document_without_attachment and not feedback: + feedback = _("Document Request: %(name)s Uploaded by: %(user)s", + name=documents[0].name, user=self.env.user.name) + messages, next_activities = super(MailActivity, self.with_context(no_document=True))._action_done( + feedback=feedback, attachment_ids=attachment_ids) + # Downgrade access link role from edit to view if necessary (if the requestee didn't have a user at the request + # time, we previously granted him edit access by setting access_via_link to edit on the document). + documents.filtered(lambda document: document.access_via_link == 'edit').access_via_link = 'view' + # Remove request information on the document + documents.requestee_partner_id = False + documents.request_activity_id = False + # Attachment must be set after documents.request_activity_id is set to False to prevent document write to + # trigger an action_done. + if attachment_ids and document_without_attachment: + document_without_attachment.attachment_id = attachment_ids[0] + return messages, next_activities + + @api.model_create_multi + def create(self, vals_list): + activities = super().create(vals_list) + upload_activities = activities.filtered(lambda act: act.activity_category == 'upload_file') + + # link back documents and activities + upload_documents_activities = upload_activities.filtered(lambda act: act.res_model == 'documents.document') + if upload_documents_activities: + documents = self.env['documents.document'].browse(upload_documents_activities.mapped('res_id')) + for document, activity in zip(documents, upload_documents_activities): + if not document.request_activity_id: + document.request_activity_id = activity.id + + # create underlying documents if related record is not a document + doc_vals = [{ + 'res_model': activity.res_model, + 'res_id': activity.res_id, + 'owner_id': activity.activity_type_id.default_user_id.id or self.env.user.id, + 'folder_id': activity.activity_type_id.folder_id.id, + 'tag_ids': [(6, 0, activity.activity_type_id.tag_ids.ids)], + 'name': activity.summary or activity.res_name or 'upload file request', + 'request_activity_id': activity.id, + } for activity in upload_activities.filtered( + lambda act: act.res_model != 'documents.document' and act.activity_type_id.folder_id + )] + if doc_vals: + self.env['documents.document'].sudo().create(doc_vals) + return activities + + def write(self, vals): + write_result = super().write(vals) + if 'date_deadline' not in vals or not ( + act_on_docs := self.filtered(lambda activity: activity.res_model == 'documents.document')): + return write_result + # Update expiration access of the requestee when updating the related request activity deadline + document_requestee_partner_ids = self.env['documents.document'].search_read([ + ('id', 'in', act_on_docs.mapped('res_id')), + ('requestee_partner_id', '!=', False), + ('request_activity_id', 'in', self.ids), + ], ['requestee_partner_id']) + new_expiration_date = datetime.combine(self[0].date_deadline, datetime.max.time()) + self.env['documents.access'].search(expression.OR([[ + ('document_id', '=', document_requestee_partner_id['id']), + ('partner_id', '=', document_requestee_partner_id['requestee_partner_id'][0]), + ('expiration_date', '<', new_expiration_date), + ] for document_requestee_partner_id in document_requestee_partner_ids + ])).expiration_date = new_expiration_date diff --git a/addons_extensions/documents/models/mail_activity_type.py b/addons_extensions/documents/models/mail_activity_type.py new file mode 100644 index 000000000..a511aee32 --- /dev/null +++ b/addons_extensions/documents/models/mail_activity_type.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models, fields + + +class MailActivityType(models.Model): + _inherit = "mail.activity.type" + + tag_ids = fields.Many2many('documents.tag') + folder_id = fields.Many2one('documents.document', + domain="[('type', '=', 'folder'), ('shortcut_document_id', '=', False)]", + help="By defining a folder, the upload activities will generate a document") diff --git a/addons_extensions/documents/models/res_config_settings.py b/addons_extensions/documents/models/res_config_settings.py new file mode 100644 index 000000000..10ae1254b --- /dev/null +++ b/addons_extensions/documents/models/res_config_settings.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + deletion_delay = fields.Integer(config_parameter="documents.deletion_delay", default=30, + help='Delay after permanent deletion of the document in the trash (days)') + + _sql_constraints = [ + ('check_deletion_delay', 'CHECK(deletion_delay >= 0)', 'The deletion delay should be positive.'), + ] diff --git a/addons_extensions/documents/models/res_partner.py b/addons_extensions/documents/models/res_partner.py new file mode 100644 index 000000000..2c89b1492 --- /dev/null +++ b/addons_extensions/documents/models/res_partner.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models, fields, _ +from odoo.osv import expression + + +class Partner(models.Model): + _inherit = "res.partner" + + document_count = fields.Integer('Document Count', compute='_compute_document_count') + + def _compute_document_count(self): + read_group_var = self.env['documents.document']._read_group( + expression.AND([ + [('partner_id', 'in', self.ids)], + [('type', '!=', 'folder')], + ]), + groupby=['partner_id'], + aggregates=['__count']) + + document_count_dict = {partner.id: count for partner, count in read_group_var} + for record in self: + record.document_count = document_count_dict.get(record.id, 0) + + def action_see_documents(self): + self.ensure_one() + return { + 'name': _('Documents'), + 'domain': [('partner_id', '=', self.id)], + 'res_model': 'documents.document', + 'type': 'ir.actions.act_window', + 'views': [(False, 'kanban')], + 'view_mode': 'kanban', + 'context': { + "default_partner_id": self.id, + "searchpanel_default_folder_id": False + }, + } + + def action_create_members_to_invite(self): + return { + 'res_model': 'res.partner', + 'target': 'new', + 'type': 'ir.actions.act_window', + 'view_id': self.env.ref('base.view_partner_simple_form').id, + 'view_mode': 'form', + } diff --git a/addons_extensions/documents/models/res_users.py b/addons_extensions/documents/models/res_users.py new file mode 100644 index 000000000..67a7aed0c --- /dev/null +++ b/addons_extensions/documents/models/res_users.py @@ -0,0 +1,13 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models + + +class Users(models.Model): + _name = "res.users" + _inherit = ["res.users"] + + def _init_store_data(self, store): + super()._init_store_data(store) + has_group = self.env.user.has_group("documents.group_documents_user") + store.add({"hasDocumentsUserGroup": has_group}) diff --git a/addons_extensions/documents/security/ir.model.access.csv b/addons_extensions/documents/security/ir.model.access.csv new file mode 100644 index 000000000..fe5df374a --- /dev/null +++ b/addons_extensions/documents/security/ir.model.access.csv @@ -0,0 +1,19 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_documents_access_base_group_portal,documents_access_base_group_portal,model_documents_access,base.group_portal,1,0,0,0 +access_documents_access_base_group_user,documents_access_base_group_user,model_documents_access,base.group_user,1,1,1,1 +access_documents_attachment_base_group_portal,documents_attachment_base_group_portal,model_documents_document,base.group_portal,1,1,1,1 +access_documents_attachment_base_group_user,documents_attachment_base_group_user,model_documents_document,base.group_user,1,1,1,1 +access_documents_tag_base_group_portal,documents_tag_base_group_portal,model_documents_tag,base.group_portal,1,0,0,0 +access_documents_tag_base_group_user,documents_tag_base_group_user,model_documents_tag,base.group_user,1,0,0,0 + +access_documents_tag_group_user,documents_tag_group_user,model_documents_tag,documents.group_documents_user,1,0,0,0 + +access_documents_access_group_manager,documents_access_group_manager,model_documents_access,documents.group_documents_manager,1,1,1,1 +access_documents_attachment_group_manager,documents_attachment_group_manager,model_documents_document,documents.group_documents_manager,1,1,1,1 +access_documents_tag_group_manager,documents_tag_group_manager,model_documents_tag,documents.group_documents_manager,1,1,1,1 + +access_documents_request_wizard,access.documents.request_wizard,model_documents_request_wizard,documents.group_documents_user,1,1,1,0 +access_documents_link_to_record_wizard,access.documents.link_to_record_wizard,model_documents_link_to_record_wizard,documents.group_documents_user,1,1,1,0 +access_mail_activity_plan_documents_manager,mail.activity.plan.documents.manager,mail.model_mail_activity_plan,documents.group_documents_manager,1,1,1,1 +access_mail_activity_plan_template_documents_manager,mail.activity.plan.template.documents.manager,mail.model_mail_activity_plan_template,documents.group_documents_manager,1,1,1,1 +access_documents_redirect_base_system_user,documents_redirect_base_system_user,model_documents_redirect,base.group_system,1,0,0,1 diff --git a/addons_extensions/documents/security/security.xml b/addons_extensions/documents/security/security.xml new file mode 100644 index 000000000..c31377140 --- /dev/null +++ b/addons_extensions/documents/security/security.xml @@ -0,0 +1,132 @@ + + + + Documents + Allows you to manage your documents. + 20 + + + + User + + + + + + Administrator + + + + + + + System Administrator + + + + + + + + + + + + + Documents.document: global read rule + + [('user_permission', '!=', 'none')] + + + + + + + Documents.document: global create rule + + [ + '|', ('folder_id.user_permission', '=', 'edit'), ('folder_id', '=', False), + ] + + + + + + + Documents.document: global write rule + + [('user_permission', '=', 'edit')] + + + + + + + + Documents.document: write+unlink base rule + + + [('user_permission', '=', 'edit'), ('is_pinned_folder', '=', False)] + + + + + + Documents.document: write+unlink manager rule + + + [('user_permission', '=', 'edit')] + + + + + + + Documents.access: global read rule + + [('document_id.user_permission', '!=', 'none')] + + + + + + + + Documents.access: global write rule + + [('document_id.user_permission', '=', 'edit')] + + + + + Manager can manage document plans + + + [('res_model', '=', 'documents.document')] + + + + + Manager can manage document plan templates + + + [('plan_id.res_model', '=', 'documents.document')] + + + + + Tag portal: Read access to the tags of the documents the user has access to + + + [('document_ids.user_permission', '!=', 'none')] + + + + + + diff --git a/addons_extensions/documents/static/description/icon.png b/addons_extensions/documents/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7c1160c7b2e37a6441595360ec78ee47af450317 GIT binary patch literal 2013 zcmV<32O{{1P)YJ>zNjcC{@5CKUvs2g|Ejjkb47bX%K10>c6u3WgVxYWd- zgg^Odiwk9AX`m29X-6%fB|t$-JAdzZ&zrUuGShe8d-v}(?@J~_%bm_lzd84ud+zN6 zNJvOXNJvOXNJvOX&nf{Df5s~R2_ghOduhvPv-Xl z;&w1gCYLI%zqr0O19K2zA*+w)&hXJ~U#)z3Iq*zv>1{BCeq?Na)q8Kpwlua@2%bI)Fm%Cp+)N=e$S?-IPPVEeZqu1im8BaT z{!K{6ETj>ky;xHiD(vp;DeU>kYz_>7l@Wp`zbqwi0V+gDIe66IekWV~oy}2WUxZK< zB`6~xJZji}ikjly&d>87bglynu`WVHbH@|`BBUHc{8!MC%B4=(5;gWkh??lAL@WOY zbQNogXDDiL*S<6u#wsB=c%DyLcR)YbU`r8TSA@*60MrJ9brdy)J)MIl#MmQbbcElo zgGH34v%Q@kgGQ_of)_1_jxzA6Y==%Mb_k(TH`+o_DO}2SU1f3=SOEU5wX(YRx$j;D z%-#fWv)RyEK8I*7bxDSM z^JlTa`G24|d~jL{%QEF##%6_3G9SJSx(Fm=`a!vSq^QPd4#9K!az`i`(+@65abAB| zY5pM0Mu?`qRU{dcut%$T_a3@)$2Kb6&Ne1QSKms841%@R(_N!#Ddr+%=sc)KmJFz? z0@n1v)K^NSm=U6G6KWc1GC0nvMfZP8nG_>JR3~$pGN9U-867iGB1OLt#ig!P864J9 z>rGh|kS;~L5U+2Q&w>hM%OIRpzH33LQuIfNqP~?189-B2ozPNEniQ=i;zL}D|1<}=33EYJ{zH=Xc1!Wyj3{Z@`WIYz*6)?$WVNuij*e*%AYJ%=lkZ7L^$`-I=wP%EtW&m$%8;R1A+by5 zk1qzLp#LAws*R9=7)@6VHNciCpD=tEH_BdtiSt%baF#Cs4fr0CQ1_9D(Lyj}-zqo^ z`~8Nf5n}n_>HCS$w+aH!=}wp5ASFUf9-aSP*Kl+bTG7q*16$UN?JE}Gx|3YN2{0NC#-%4#V_heLWKG7li0Qo{< zls^=gx`Aa7B0|Iu7}Hdx=tPMMSo3^PL?{`AuMqx|eQRfvtbxBE3<~>Jp=A*M5#kob zuRT>KZDU7>m+)5zi=x~SNe1C7{PbFI5H+ z>Oxa(-(W+bexi*zkghl=a~a;fba-c7X^i(gIDQrI_9Y0z^Y8~OfE+|6^>VYU>Por{ zBJ`ENM9J;`u-##F6$F+BH^&N>4PG#mC-T&Whd=^KWDv@QOhMNQ!4z!6;e*?7{F=7s zor$w{iHvernG8bvFJ`=bMcP?e--o~7ZG^D`XoF8v-gFfWr7{R3pHw&&4Q;nuy6xB@C zq*y0|h=mYBvJ@+25U~+LNRnc$3?f!Sh=@|GmO;c$2oX|>^)iT93LyeYiG>UzwnB*U zBQK^?PO+Q6i8PddF9-}rvFPro+0uOgVnD2gOp!aXv7Iq^0~~DQ5z{~tz=eLU<5bl| v;S=_1ukuTTCnO{!BqSsxBqSsx#FhU5Z7#!&o>{E;00000NkvXXu0mjfI7fSe literal 0 HcmV?d00001 diff --git a/addons_extensions/documents/static/description/icon.svg b/addons_extensions/documents/static/description/icon.svg new file mode 100644 index 000000000..f4766dbc5 --- /dev/null +++ b/addons_extensions/documents/static/description/icon.svg @@ -0,0 +1 @@ + diff --git a/addons_extensions/documents/static/src/attachments/attachment_model_patch.js b/addons_extensions/documents/static/src/attachments/attachment_model_patch.js new file mode 100644 index 000000000..84f1a7226 --- /dev/null +++ b/addons_extensions/documents/static/src/attachments/attachment_model_patch.js @@ -0,0 +1,37 @@ +/* @odoo-module */ + +import { Attachment } from "@mail/core/common/attachment_model"; +import { patch } from "@web/core/utils/patch"; + +patch(Attachment.prototype, { + documentId: null, + documentData: null, + + get urlRoute() { + if (this.documentId) { + return this.isImage + ? `/web/image/${this.documentId}` + : `/web/content/${this.documentId}`; + } + return super.urlRoute; + }, + + get defaultSource() { + if (this.isPdf && this.documentId) { + const encodedRoute = encodeURIComponent( + `/documents/content/${this.documentData.access_token}?download=0` + ); + return `/web/static/lib/pdfjs/web/viewer.html?file=${encodedRoute}#pagemode=none`; + } + return super.defaultSource; + }, + + get urlQueryParams() { + const res = super.urlQueryParams; + if (this.documentId) { + res["model"] = "documents.document"; + return res; + } + return res; + }, +}); diff --git a/addons_extensions/documents/static/src/attachments/document_file_viewer.js b/addons_extensions/documents/static/src/attachments/document_file_viewer.js new file mode 100644 index 000000000..de2c060f8 --- /dev/null +++ b/addons_extensions/documents/static/src/attachments/document_file_viewer.js @@ -0,0 +1,108 @@ +/* @odoo-module */ + +import { useService } from "@web/core/utils/hooks"; +import { FileViewer as WebFileViewer } from "@web/core/file_viewer/file_viewer"; +import { onWillUpdateProps } from "@odoo/owl"; + +export class FileViewer extends WebFileViewer { + static template = "documents.FileViewer"; + setup() { + super.setup(); + /** @type {import("@documents/core/document_service").DocumentService} */ + this.documentService = useService("document.document"); + this.onSelectDocument = this.documentService.documentList?.onSelectDocument; + onWillUpdateProps((nextProps) => { + const indexOfFileToPreview = nextProps.startIndex; + if ( + indexOfFileToPreview !== this.state.index && + indexOfFileToPreview !== this.props.startIndex + ) { + this.activateFile(indexOfFileToPreview); + } + this.documentService.setPreviewedDocument( + this.documentService.documentList.documents[nextProps.startIndex] + ); + }); + } + get hasSplitPdf() { + if (this.documentService.documentList?.initialRecordSelectionLength === 1) { + return this.documentService.documentList.selectedDocument.attachment.isPdf; + } + return this.documentService.documentList?.documents.every( + (document) => document.attachment.isPdf + ); + } + get withDownload() { + if (this.documentService.documentList?.initialRecordSelectionLength === 1) { + return this.documentService.documentList.selectedDocument.attachment.isUrlYoutube; + } + return this.documentService.documentList?.documents.every( + (document) => document.attachment.isUrlYoutube + ); + } + onClickPdfSplit() { + this.close(); + if (this.documentService.documentList?.initialRecordSelectionLength === 1) { + return this.documentService.documentList?.pdfManagerOpenCallback([ + this.documentService.documentList.selectedDocument.record, + ]); + } + return this.documentService.documentList?.pdfManagerOpenCallback( + this.documentService.documentList.documents.map((document) => document.record) + ); + } + close() { + this.documentService.documentList?.onDeleteCallback(); + this.documentService.setPreviewedDocument(null); + super.close(); + } + next() { + super.next(); + this.documentService.setPreviewedDocument( + this.documentService.documentList.documents[this.state.index] + ); + + if (this.onSelectDocument) { + const documentList = this.documentService.documentList; + if ( + !documentList || + !documentList.selectedDocument || + !documentList.documents || + !documentList.documents.length + ) { + return; + } + const index = documentList.documents.findIndex( + (document) => document === documentList.selectedDocument + ); + const nextIndex = index === documentList.documents.length - 1 ? 0 : index + 1; + documentList.selectedDocument = documentList.documents[nextIndex]; + this.onSelectDocument(documentList.selectedDocument.record); + } + } + previous() { + super.previous(); + this.documentService.setPreviewedDocument( + this.documentService.documentList.documents[this.state.index] + ); + + if (this.onSelectDocument) { + const documentList = this.documentService.documentList; + if ( + !documentList || + !documentList.selectedDocument || + !documentList.documents || + !documentList.documents.length + ) { + return; + } + const index = documentList.documents.findIndex( + (doc) => doc === documentList.selectedDocument + ); + // if we're on the first document, go "back" to the last one + const previousIndex = index === 0 ? documentList.documents.length - 1 : index - 1; + documentList.selectedDocument = documentList.documents[previousIndex]; + this.onSelectDocument(documentList.selectedDocument.record); + } + } +} diff --git a/addons_extensions/documents/static/src/attachments/document_file_viewer.xml b/addons_extensions/documents/static/src/attachments/document_file_viewer.xml new file mode 100644 index 000000000..5e19963ce --- /dev/null +++ b/addons_extensions/documents/static/src/attachments/document_file_viewer.xml @@ -0,0 +1,28 @@ + + + + +
    + + + Split PDF + +
    +
    + + $0 + + + + + + + + + + + + + +
    +
    diff --git a/addons_extensions/documents/static/src/attachments/models.d.ts b/addons_extensions/documents/static/src/attachments/models.d.ts new file mode 100644 index 000000000..8ac3af20b --- /dev/null +++ b/addons_extensions/documents/static/src/attachments/models.d.ts @@ -0,0 +1,5 @@ +declare module "models" { + export interface Attachment { + documentId: number, + } +} diff --git a/addons_extensions/documents/static/src/components/documents_breadcrumbs.js b/addons_extensions/documents/static/src/components/documents_breadcrumbs.js new file mode 100644 index 000000000..27a0e5d37 --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_breadcrumbs.js @@ -0,0 +1,10 @@ +import { DocumentsCogMenu } from "../views/cog_menu/documents_cog_menu"; +import { Breadcrumbs } from "@web/search/breadcrumbs/breadcrumbs"; + +export class DocumentsBreadcrumbs extends Breadcrumbs { + static components = { + ...Breadcrumbs.components, + DocumentsCogMenu, + }; + static template = "documents.Breadcrumbs"; +} diff --git a/addons_extensions/documents/static/src/components/documents_breadcrumbs.xml b/addons_extensions/documents/static/src/components/documents_breadcrumbs.xml new file mode 100644 index 000000000..72a40047f --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_breadcrumbs.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.js b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.js new file mode 100644 index 000000000..737748def --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.js @@ -0,0 +1,43 @@ +/** @odoo-module **/ + +import { useDateTimePicker } from "@web/core/datetime/datetime_hook"; +import { deserializeDateTime, today } from "@web/core/l10n/dates"; +import { user } from "@web/core/user"; +import { Component } from "@odoo/owl"; + +export class DocumentsAccessExpirationDateBtn extends Component { + static defaultProps = { editionMode: false }; + static props = { + accessPartner: Object, + disabled: Boolean, + setExpirationDate: Function, + editionMode: { type: Boolean, optional: true }, + }; + static template = "documents.AccessExpirationDateBtn"; + + setup() { + const pickerProps = { + type: "datetime", + value: this.props.accessPartner.expiration_date + ? deserializeDateTime(this.props.accessPartner.expiration_date, { + tz: user.context.tz, + }) + : today(), + }; + this.dateTimePicker = useDateTimePicker({ + target: `datetime-picker-target-${this.props.accessPartner.partner_id.id}`, + onApply: (date) => { + this.props.setExpirationDate(this.props.accessPartner, date); + }, + get pickerProps() { + return pickerProps; + }, + }); + } + + onClickDateTimePickerBtn() { + if (!this.props.disabled) { + this.dateTimePicker.open(); + } + } +} diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml new file mode 100644 index 000000000..bc188f9aa --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_expiration_date_btn.xml @@ -0,0 +1,16 @@ + + + + + + diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_settings.js b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_settings.js new file mode 100644 index 000000000..9c56b4900 --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_settings.js @@ -0,0 +1,67 @@ +/** @odoo-module **/ + +import { CheckBox } from "@web/core/checkbox/checkbox"; +import { _t } from "@web/core/l10n/translation"; +import { DocumentsPermissionSelect } from "./documents_permission_select"; +import { Component } from "@odoo/owl"; + +const accessProps = { + access_internal: String, + access_via_link: String, + is_access_via_link_hidden: Boolean, +}; + +export class DocumentsAccessSettings extends Component { + static components = { + CheckBox, + DocumentsPermissionSelect, + }; + static props = { + access: accessProps, + baseAccess: accessProps, + disabled: Boolean, + onChangeAccessInternal: Function, + onChangeAccessLink: Function, + onChangeIsAccessLinkHidden: Function, + selections: Object, + }; + static template = "documents.AccessSettings"; + + /** + * Return additional label corresponding to internal access setting + */ + get accessInternalHelper() { + if (this.props.access.access_internal !== "none") { + return _t("Internal users can %(action)s", { + action: this.props.access.access_internal, + }); + } + return _t("Only people with access can open with the link"); + } + + /** + * Return additional label corresponding to link access setting + */ + get accessLinkHelper() { + if (this.props.access.access_via_link !== "none") { + return _t("Anyone on the internet with the link can %(action)s", { + action: this.props.access.access_via_link, + }); + } + return _t("No one on the internet can access"); + } + + /** + * Return an error message to disable the edit mode. + */ + get errorAccessLinkEdit() { + return undefined; + } + + /** + * Return an error message to disable the edit mode. + */ + get errorAccessInternalEdit() { + return undefined; + } +} diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_settings.xml b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_settings.xml new file mode 100644 index 000000000..2576168d7 --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_access_settings.xml @@ -0,0 +1,43 @@ + + + +

    General access

    +
    + +
    +
    + +
    +
    +
    + +
    + + diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_member_invite.js b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_member_invite.js new file mode 100644 index 000000000..a8d2506fc --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_member_invite.js @@ -0,0 +1,264 @@ +/** @odoo-module **/ + +import { + DocumentsPermissionSelect, + DocumentsPermissionSelectMenu, +} from "./documents_permission_select"; +import { DropdownItem } from "@web/core/dropdown/dropdown_item"; +import { rpcBus } from "@web/core/network/rpc"; +import { useBus, useService } from "@web/core/utils/hooks"; +import { isEmail } from "@web/core/utils/strings"; +import { isEmpty } from "@html_editor/utils/dom_info"; +import { Wysiwyg } from "@html_editor/wysiwyg"; +import { HtmlMailField } from "@mail/views/web/fields/html_mail_field/html_mail_field"; +import { _t } from "@web/core/l10n/translation"; +import { Component, onWillUpdateProps, useState } from "@odoo/owl"; + +const cssRulesByElement = new WeakMap(); + +export class DocumentsMemberInvite extends Component { + static components = { + DocumentsPermissionSelect, + DocumentsPermissionSelectMenu, + DropdownItem, + Wysiwyg, + }; + static props = { + access: Object, + accessPartners: Array, + autoSave: Function, + close: Function, + selectedPartnersRole: String, + invitePage: Boolean, + disabled: Boolean, + roles: Array, + pendingSave: Boolean, + showMainPage: Function, + updateAccessRights: Function, + }; + static template = "documents.MemberInvite"; + + setup() { + this.actionService = useService("action"); + this.createdPartners = { choices: [], values: [] }; + this.orm = useService("orm"); + this.state = useState({ + notify: true, + fetchedPartners: [], + selectedPartners: [], + selectedPartnersRole: this.props.selectedPartnersRole, + sharing: false, + }); + const wysiwygPlaceholder = _t("Optional message..."); + this.wysiwyg = { + config: { + content: `


    `, + placeholder: wysiwygPlaceholder, + disableVideo: true, + }, + editor: undefined, + message: "", + }; + useBus(rpcBus, "RPC:RESPONSE", this.responseCall); + + onWillUpdateProps((nextProps) => { + if (!nextProps.invitePage) { + this.state.selectedPartners = []; + this.state.selectedPartnersRole = this.props.selectedPartnersRole; + } + }); + } + + /** + * @returns {string|undefined} + */ + get noEditorMessage() { + return undefined; + } + + /** + * @param {String} query + * @param {Array} domain + * @param {Number} limit + * @returns Array[Object] + */ + async getPartners(domain = [], limit = 4) { + const partners = await this.orm.call("res.partner", "web_search_read", [], { + domain: domain, + specification: this._getPartnersSpecification(), + limit: limit, + }); + return partners.records; + } + + _getPartnersSpecification() { + return { display_name: 1, email: 1 }; + } + + /** + * Call new contact form + * @param {String} defaultName + * @param {Boolean} andEdit + */ + async createPartners(defaultName, andEdit = false) { + const onClose = async () => { + if (this.createdPartners.choices) { + this.state.fetchedPartners = this.state.fetchedPartners.concat( + this.createdPartners.choices + ); + this.state.selectedPartners = this.state.selectedPartners.concat( + this.createdPartners.values + ); + this.props.showMainPage(false); + } + }; + if (andEdit) { + return this.actionService.doActionButton({ + name: "action_create_members_to_invite", + type: "object", + resModel: "res.partner", + buttonContext: { + default_name: defaultName, + dialog_size: "medium", + }, + onClose, + }); + } + const partnerId = await this.orm.call("res.partner", "create", [ + { + name: defaultName, + email: defaultName, + }, + ]); + if (partnerId) { + const createdPartners = await this.orm.webRead("res.partner", [partnerId], { + specification: { name: 1, email: 1 }, + }); + this._addCreatedPartners(createdPartners); + } + await onClose(); + } + + /** + * Provides a selection of partners based on user input + * while keeping selected partners visible + * @param {String} search + */ + async onSearchPartners(search) { + const selectedPartners = this.state.fetchedPartners.filter((p) => + this.state.selectedPartners.includes(p.id) + ); + const partners = await this.getPartners([ + [ + "id", + "!=", + [ + ...this.props.accessPartners.flatMap((a) => (a.role ? [a.partner_id.id] : [])), + ...selectedPartners.map((s) => s.id), + ], + ], + "|", + ["name", "ilike", search.trim()], + ["email", "ilike", search.trim()], + ]); + this.state.fetchedPartners = [...partners, ...selectedPartners]; + } + + /** + * @param {Event} event + */ + onChangeRoleForMemberToInvite(event) { + this.state.selectedPartnersRole = event.target.selectedOptions[0].value; + } + + /** + * @param {Number[]} values + */ + onSelectPartnerToInvite(values) { + this.state.selectedPartners = values; + if (this.props.pendingSave) { + this.props.autoSave(); + } + if (!this.props.invitePage) { + this.props.showMainPage(false); + } + } + + onClickNotify() { + this.state.notify = !this.state.notify; + } + + /** + * Add new partner access to a document/folder + */ + async onShare() { + const partners = {}; + this.state.selectedPartners.forEach( + (p) => (partners[p] = [this.state.selectedPartnersRole, false]) + ); + if (this.state.notify) { + await this.getFormattedWysiwygContent(); + } + this.state.sharing = true; + await this.props.updateAccessRights(partners, this.state.notify, this.wysiwyg.message); + await this.props.close(); + } + + /** + * Switch back to the main page + */ + onDiscard() { + this.state.notify = true; + this.props.showMainPage(true); + } + + isEmail(value) { + return isEmail(value); + } + + /** + * @param {Editor} editor + */ + onLoadWysiwyg(editor) { + this.wysiwyg.editor = editor; + } + + /** + * Format message content for email notification + */ + async getFormattedWysiwygContent() { + const el = this.wysiwyg.editor.getElContent(); + await HtmlMailField.getInlinedEditorContent(cssRulesByElement, this.wysiwyg.editor, el); + this.wysiwyg.message = isEmpty(el.firstChild) ? "" : this.wysiwyg.editor.getContent(); + } + + /** + * Catch rpc response to new contact creation request + */ + responseCall({ detail }) { + if (detail.result) { + if ( + detail.data.params.method === "web_save" && + detail.data.params.model === "res.partner" + ) { + this._addCreatedPartners(detail.result); + } + } + } + + _addCreatedPartners(createdPartners) { + this.createdPartners = { choices: [], values: [] }; + for (const partner of createdPartners) { + this.createdPartners.choices.push(this._addCreatedPartnersValues(partner)); + this.createdPartners.values.push(partner.id); + } + } + + _addCreatedPartnersValues(partner) { + return { + id: partner.id, + display_name: partner.name, + email: partner.email, + }; + } +} diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_member_invite.xml b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_member_invite.xml new file mode 100644 index 000000000..c709c541e --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_member_invite.xml @@ -0,0 +1,83 @@ + + + + +
    + + + + + + + + + + + + + + Create new contact "" + + + Create and edit new contact "" + + + + +
    + +
    +
    + + +
    +
    + +
    +
    + + + +
    + + + + + + + + + + diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_partner_access.js b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_partner_access.js new file mode 100644 index 000000000..0a26abf20 --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_partner_access.js @@ -0,0 +1,47 @@ +/** @odoo-module **/ + +import { DocumentsAccessExpirationDateBtn } from "./documents_access_expiration_date_btn"; +import { DocumentsPermissionSelect } from "./documents_permission_select"; +import { DocumentsRemovePartnerButton } from "./documents_remove_partner_button"; +import { deserializeDateTime } from "@web/core/l10n/dates"; +import { user } from "@web/core/user"; +import { Component } from "@odoo/owl"; + +export class DocumentsPartnerAccess extends Component { + static components = { + DocumentsAccessExpirationDateBtn, + DocumentsPermissionSelect, + DocumentsRemovePartnerButton, + }; + static props = { + access: Object, + accessPartners: Array, + basePartnersRole: Object, + basePartnersAccessExpDate: Object, + isAdmin: Boolean, + isInternalUser: Boolean, + isCurrentUser: Function, + disabled: Boolean, + ownerUser: [Object, Boolean], + onChangePartnerRole: Function, + removeDocumentAccess: Function, + selections: Array, + setExpirationDate: Function, + }; + static template = "documents.PartnerAccess"; + + /** + * @returns {string|undefined} + */ + noEditorMessage(partner) { + return undefined; + } + + getFormattedLocalExpirationDate(accessPartner) { + return deserializeDateTime(accessPartner.expiration_date, { + tz: user.context.tz, + }) + .setLocale(user.context.lang.replaceAll("_", "-")) + .toLocaleString(luxon.DateTime.DATETIME_SHORT); + } +} diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_partner_access.xml b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_partner_access.xml new file mode 100644 index 000000000..b7689c78c --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_partner_access.xml @@ -0,0 +1,70 @@ + + + +

    People with access

    + +
    + + + +
    + Owner +
    +
    + + +
    + + + +
    +
    + + + +
    +
    +
    +
    +
    + + +
    + +
    +
    +
    + + You +
    +
    + +
    +
    + Exp: + + +
    +
    +
    +
    diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_panel.js b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_panel.js new file mode 100644 index 000000000..7dd17ef40 --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_panel.js @@ -0,0 +1,277 @@ +/** @odoo-module **/ + +import { CopyButton } from "@web/core/copy_button/copy_button"; +import { Dialog } from "@web/core/dialog/dialog"; +import { DocumentsAccessSettings } from "./documents_access_settings"; +import { DocumentsMemberInvite } from "./documents_member_invite"; +import { DocumentsPartnerAccess } from "./documents_partner_access"; +import { serializeDateTime } from "@web/core/l10n/dates"; +import { _t } from "@web/core/l10n/translation"; +import { useBus, useService } from "@web/core/utils/hooks"; +import { rpcBus } from "@web/core/network/rpc"; +import { user } from "@web/core/user"; +import { Component, onWillStart, useState } from "@odoo/owl"; + +export class DocumentsPermissionPanel extends Component { + static components = { + CopyButton, + Dialog, + DocumentsAccessSettings, + DocumentsMemberInvite, + DocumentsPartnerAccess, + }; + static props = { + document: { + type: Object, + shape: { + id: Number, + name: { type: String, optional: true }, + }, + }, + close: Function, + onChangesSaved: { type: Function, optional: true }, + }; + static template = "documents.PermissionPanel"; + + setup() { + this.actionService = useService("action"); + this.basePartnersRole = {}; + this.createdPartners = { choices: [], values: [] }; + this.dialog = useService("dialog"); + this.isAdmin = user.isAdmin; + this.orm = useService("orm"); + this.documentService = useService("document.document"); + this.isInternalUser = this.documentService.userIsInternal; + this.state = useState({ + loading: true, + mainPage: true, + didSave: false, + }); + + useBus(rpcBus, "RPC:RESPONSE", this.responseCall); + + onWillStart(async () => { + this.state.loading = true; + await this.loadMainPage(); + this.state.loading = false; + }); + } + + get panelTitle() { + return _t("Share: %(documentName)s", { documentName: this.state.access.display_name }); + } + + get pendingSave() { + return ( + Object.entries(this.baseAccess).some( + ([fieldName, value]) => this.state.access[fieldName] !== value + ) || + this.partnersRoleIsDirty || + this.partnersAccessExpDateIsDirty + ); + } + + get copyText() { + return this.pendingSave ? _t("Save or discard changes first") : _t("Copy Link"); + } + + /** + * Check whether there is an alert message to display, and which one + * + * @returns {string|null} + */ + get warningMessage() { + if ( + this.state.access.access_via_link === "edit" && + (this.state.access.access_internal === "view" || + this.state.access.access_ids.some((a) => a.role === "view")) + ) { + const documentType = + this.state.access.type === "folder" ? _t("folder") : _t("document"); + return _t( + "All users with access to this %(documentType)s or its parent will have edit permissions.", + { documentType } + ); + } + return null; + } + + get partnersRoleIsDirty() { + return this.state.access.access_ids.some((a) => a.role !== this.basePartnersRole[a.id]); + } + + get partnersAccessExpDateIsDirty() { + return this.state.access.access_ids.some( + (a) => a.expiration_date !== this.basePartnersAccessExpDate[a.id] + ); + } + + revertChanges() { + Object.assign(this.state.access, this.baseAccess); + for (const [id, role] of Object.entries(this.basePartnersRole)) { + const accessPartner = this.state.access.access_ids.find((a) => a.id === parseInt(id)); + accessPartner.role = role; + accessPartner.expiration_date = this.basePartnersAccessExpDate[id]; + } + } + + showMainPage(value = true) { + this.state.mainPage = value; + } + + async save() { + this.state.loading = true; + const userPermission = await this.updateAccessRights(); + if (userPermission === "none") { + // Don't crash when current user just removed their own access + await this.actionService.restore(this.actionService.currentController.jsId); + return; + } + await this.loadMainPage(); + this.state.loading = false; + } + + async loadMainPage() { + const permissionsData = await this.orm.call("documents.document", "permission_panel_data", [ + this.props.document.id, + ]); + this.state.access = permissionsData.record; + this.state.selections = permissionsData.selections; + this.selectedPartnersRole = this.state.selections.doc_access_roles + ? this.state.selections.doc_access_roles[0][0] + : ""; + this.baseAccess = Object.fromEntries( + ["access_internal", "access_via_link", "is_access_via_link_hidden"].map((fieldName) => [ + fieldName, + this.state.access[fieldName], + ]) + ); + this.basePartnersRole = {}; + (this.state.access.access_ids || []).forEach((a) => (this.basePartnersRole[a.id] = a.role)); + this.basePartnersAccessExpDate = {}; + (this.state.access.access_ids || []).forEach( + (a) => (this.basePartnersAccessExpDate[a.id] = a.expiration_date) + ); + } + + /** + * Create/Update/Unlink access to document/folder. + * @param {Object} partners Partners to be added. + * @param {Boolean} notify Whether to notify the `partners` + * @param {String} message Optional customized message + */ + async updateAccessRights(partners= undefined, notify = false, message = "") { + const accessValuesToSend = Object.fromEntries( + Object.entries(this.baseAccess).map(([field, oldValue]) => [ + field, + oldValue !== this.state.access[field] ? this.state.access[field] : null, + ]) + ); + let partnersToUpdate = partners; + if (this.partnersRoleIsDirty || this.partnersAccessExpDateIsDirty) { + partnersToUpdate = partnersToUpdate || {}; + this.state.access.access_ids.forEach((a) => { + const roleUpdated = a.role !== this.basePartnersRole[a.id]; + const expirationUpdated = + a.expiration_date !== this.basePartnersAccessExpDate[a.id]; + if (roleUpdated || expirationUpdated) { + partnersToUpdate[a.partner_id.id] = [ + a.role, + expirationUpdated ? a.expiration_date : null, + ]; + } + }); + } + const userPermission = (await this.orm.call("documents.document", "action_update_access_rights", [ + [this.props.document.id], + accessValuesToSend.access_internal, + accessValuesToSend.access_via_link, + accessValuesToSend.is_access_via_link_hidden, + partnersToUpdate, + notify, + message, + ]))[0]; + this.state.didSave = true; + return userPermission; + } + + /** + * Unset partner access to a document/folder + * @param {Proxy} accessPartner + */ + removeDocumentAccess(accessPartner) { + accessPartner.role = false; + this.state.partnersRoleIsDirty = true; + } + + /** + * @param {Proxy} accessPartner + * @returns {Boolean} + */ + isCurrentUser(accessPartner) { + return accessPartner.partner_id.id === user.partnerId; + } + + close() { + if (this.state.didSave) { + this.props.onChangesSaved?.(); + } + this.props.close(); + } + + onDiscard() { + return this.pendingSave ? this.revertChanges() : this.close(); + } + + onShare() { + return this.pendingSave && this.state.access.user_permission === "edit" + ? this.save() + : this.close(); + } + + /** + * @param {Event} event + */ + onChangeDocumentAccessInternal(event) { + this.state.access.access_internal = event.target.selectedOptions[0].value; + } + + /** + * @param {Event} event + */ + onChangeDocumentAccessLink(event) { + this.state.access.access_via_link = event.target.selectedOptions[0].value; + } + + onChangeDocumentIsAccessLinkHidden(event) { + this.state.access.is_access_via_link_hidden = !!parseInt(event.target.value); + } + + /** + * @param {Event} event + * @param {Proxy} accessPartner + */ + onChangePartnerRole(event, accessPartner) { + accessPartner.role = event.target.selectedOptions[0].value; + } + + /** + * @param {Proxy} accessPartner + * @param {luxon.DateTime | Boolean } value + */ + setExpirationDate(accessPartner, value) { + accessPartner.expiration_date = value ? serializeDateTime(value) : value; + } + + /** + * Catch rpc response on update: error on document/folder or its access, + * result on document tag creation + */ + responseCall({ detail }) { + if (detail.error && detail.data.params.model === "documents.document") { + this.state.mainPage = true; + this.revertChanges(); + this.state.loading = false; + } + } +} diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml new file mode 100644 index 000000000..f0b726b1b --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_panel.xml @@ -0,0 +1,77 @@ + + + + + + +
    + + +
    + +
    +
    +
    diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_select.js b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_select.js new file mode 100644 index 000000000..73d933a1b --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_select.js @@ -0,0 +1,74 @@ +/** @odoo-module **/ + +import { SelectMenu } from "@web/core/select_menu/select_menu"; +import { Component } from "@odoo/owl"; + +export class DocumentsPermissionSelect extends Component { + static defaultProps = { + ariaLabel: "Document permission select", + disabled: false, + }; + static props = { + ariaLabel: { type: String, optional: true }, + disabled: { type: Boolean, optional: true }, + label: { type: String, optional: true }, + labelHelper: { type: String, optional: true }, + options: Array, + onChange: { type: Function, optional: true }, + selectClass: { type: String, optional: true }, + showFeedbackChange: { type: Boolean, optional: true }, + value: [String, Number, Boolean], + noEditorMessage: { type: String, optional: true }, + }; + static template = "documents.PermissionSelect"; + + get selectClass() { + return `${ + this.props.selectClass ? this.props.selectClass : this.props.label ? "w-75" : "w-50" + } ${this.props.showFeedbackChange ? "border-primary" : ""}`; + } +} + +export class DocumentsPermissionSelectMenu extends SelectMenu { + static defaultProps = { + ...super.defaultProps, + hasColor: false, + }; + static props = { + ...super.props, + buttonText: { type: String, optional: true }, + hasColor: { type: Boolean, optional: true }, + onOpen: { type: Function, optional: true }, + }; + static template = "documents.PermissionSelectMenu"; + + onStateChanged(open) { + super.onStateChanged(open); + if (open) { + this.menuRef.el.querySelector("input").focus(); + this.props.onOpen?.(); + } + } + + get multiSelectChoices() { + if (this.props.hasColor) { + const choices = [ + ...this.props.choices, + ...this.props.groups.flatMap((g) => g.choices), + ].filter((c) => this.props.value.includes(c.value)); + return choices.map((c) => { + return { + id: c.value, + text: c.label, + colorIndex: c.colorIndex, + onDelete: () => { + const values = [...this.props.value]; + values.splice(values.indexOf(c.value), 1); + this.props.onSelect(values); + }, + }; + }); + } + return super.multiSelectChoices; + } +} diff --git a/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_select.xml b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_select.xml new file mode 100644 index 000000000..11e4db8b4 --- /dev/null +++ b/addons_extensions/documents/static/src/components/documents_permission_panel/documents_permission_select.xml @@ -0,0 +1,32 @@ + + + + +
    +