[CHG] module name: knowledge -> document_knowledge

In v16 Odoo has its own knowledge module
This commit is contained in:
mle 2022-10-19 12:00:29 +02:00 committed by Khôi (Kiên Kim)
parent 3e1dce83a1
commit a13425e11d
83 changed files with 4308 additions and 6270 deletions

View File

@ -1,6 +1,6 @@
========= ===================
Knowledge Documents Knowledge
========= ===================
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !! !! This file is generated by oca-gen-addon-readme !!
@ -14,16 +14,16 @@ Knowledge
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3 :alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github
:target: https://github.com/OCA/knowledge/tree/16.0/knowledge :target: https://github.com/OCA/knowledge/tree/16.0/document_knowledge
:alt: OCA/knowledge :alt: OCA/knowledge
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/knowledge-16-0/knowledge-16-0-knowledge :target: https://translation.odoo-community.org/projects/knowledge-16-0/knowledge-16-0-document_knowledge
:alt: Translate me on Weblate :alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/118/16.0 :target: https://runbot.odoo-community.org/runbot/118/16.0
:alt: Try me on Runbot :alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5| |badge1| |badge2| |badge3| |badge4| |badge5|
This module is the base for any knowledge and document management application. This module is the base for any knowledge and document management application.
@ -71,7 +71,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/knowledge/issues>`_. Bugs are tracked on `GitHub Issues <https://github.com/OCA/knowledge/issues>`_.
In case of trouble, please check there if your issue has already been reported. In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/knowledge/issues/new?body=module:%20knowledge%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. `feedback <https://github.com/OCA/knowledge/issues/new?body=module:%20document_knowledge%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues. Do not contact contributors directly about support or help with technical issues.
@ -97,6 +97,7 @@ Contributors
* Fayez Qandeel * Fayez Qandeel
* Iván Todorovich <ivan.todorovich@gmail.com> * Iván Todorovich <ivan.todorovich@gmail.com>
* Jordi Ballester <jordi.ballester@forgeflow.com> * Jordi Ballester <jordi.ballester@forgeflow.com>
* Marie Lejeune <marie.lejeune@acsone.eu>
* `Tecnativa <https://www.tecnativa.com>`_: * `Tecnativa <https://www.tecnativa.com>`_:
* Vicent Cubells * Vicent Cubells
@ -126,6 +127,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and mission is to support the collaborative development of Odoo features and
promote its widespread use. promote its widespread use.
This module is part of the `OCA/knowledge <https://github.com/OCA/knowledge/tree/16.0/knowledge>`_ project on GitHub. This module is part of the `OCA/knowledge <https://github.com/OCA/knowledge/tree/16.0/document_knowledge>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View File

@ -1,7 +1,7 @@
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{ {
"name": "Knowledge", "name": "Documents Knowledge",
"version": "16.0.1.0.0", "version": "16.0.1.0.0",
"author": "OpenERP SA," "author": "OpenERP SA,"
"MONK Software, " "MONK Software, "
@ -14,12 +14,12 @@
"depends": ["base"], "depends": ["base"],
"data": [ "data": [
"data/ir_module_category.xml", "data/ir_module_category.xml",
"security/knowledge_security.xml", "security/document_knowledge_security.xml",
"data/res_users.xml", "data/res_users.xml",
"views/knowledge.xml", "views/document_knowledge.xml",
"views/res_config.xml", "views/res_config.xml",
], ],
"demo": ["demo/knowledge.xml"], "demo": ["demo/document_knowledge.xml"],
"installable": True, "installable": True,
"application": True, "application": True,
} }

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<odoo> <odoo>
<record model="ir.module.category" id="module_category_knowledge"> <record model="ir.module.category" id="module_category_knowledge">
<field name="name">Knowledge</field> <field name="name">Documents Knowledge</field>
<field name="description">Manage documents and knowledge-related <field name="description">Manage documents and knowledge-related
applications applications
</field> </field>

View File

@ -1,6 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<odoo> <odoo>
<record id="base.user_admin" model="res.users"> <record id="base.user_admin" model="res.users">
<field name="groups_id" eval="[(4,ref('knowledge.group_document_user'))]" /> <field
name="groups_id"
eval="[(4,ref('document_knowledge.group_document_user'))]"
/>
</record> </record>
</odoo> </odoo>

View File

@ -1,6 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="1"> <odoo noupdate="1">
<record id="base.user_demo" model="res.users"> <record id="base.user_demo" model="res.users">
<field name="groups_id" eval="[(4,ref('knowledge.group_document_user'))]" /> <field
name="groups_id"
eval="[(4,ref('document_knowledge.group_document_user'))]"
/>
</record> </record>
</odoo> </odoo>

View File

@ -18,158 +18,127 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "ማስተካከያዎች" msgstr "ማስተካከያዎች"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "ማስተካከያዎች" msgstr "ማስተካከያዎች"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,159 +19,129 @@ msgstr ""
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "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" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "الإعدادات" msgstr "الإعدادات"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "الإعدادات" msgstr "الإعدادات"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "المعرفة"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "المستندات" msgstr "المستندات"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "ضبط المعرفة"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "المعرفة" msgstr "المعرفة"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "المعرفة وإدارة المستندات" msgstr "المعرفة وإدارة المستندات"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "المعرفة"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -183,9 +153,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "إلغاء" #~ msgstr "إلغاء"
#~ msgid "Configure Knowledge"
#~ msgstr "ضبط المعرفة"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "أنشئ بواسطة" #~ msgstr "أنشئ بواسطة"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Настройка" msgstr "Настройка"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Настройка" msgstr "Настройка"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Знания"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Документи" msgstr "Документи"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Документи"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Знания" msgstr "Знания"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Знания"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,159 +19,129 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 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" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Konfiguracija" msgstr "Konfiguracija"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguracija" msgstr "Konfiguracija"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Znanje"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Znanje"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Znanje" msgstr "Znanje"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Znanje"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuració" msgstr "Configuració"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuració" msgstr "Configuració"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Coneixement"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documents" msgstr "Documents"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Documents"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Coneixement" msgstr "Coneixement"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Coneixement"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Nastavení" msgstr "Nastavení"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Nastavení" msgstr "Nastavení"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Znalosti"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumenty" msgstr "Dokumenty"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Nastavit znalosti"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Znalosti" msgstr "Znalosti"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Správa znalostí a dokumentů" msgstr "Správa znalostí a dokumentů"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Znalosti"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Zrušit" #~ msgstr "Zrušit"
#~ msgid "Configure Knowledge"
#~ msgstr "Nastavit znalosti"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Vytvořil(a)" #~ msgstr "Vytvořil(a)"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Konfiguration" msgstr "Konfiguration"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguration" msgstr "Konfiguration"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Viden"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumenter" msgstr "Dokumenter"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Dokumenter"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Viden" msgstr "Viden"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Viden"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,8 +19,8 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
@ -28,67 +28,42 @@ msgstr ""
"Workflow zu Dokumenten pro Kategorie hinzufügen.\n" "Workflow zu Dokumenten pro Kategorie hinzufügen.\n"
"- Das Modul document_page_approval wird installiert." "- Das Modul document_page_approval wird installiert."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr "Dateien aus externem DMS in Odoo einbinden"
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
#, fuzzy #, fuzzy
msgid "Attachment" msgid "Attachment"
msgstr "ir.attachment" msgstr "ir.attachment"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "knowledge.config.settings" msgstr "knowledge.config.settings"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguration" msgstr "Konfiguration"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Wissender Benutzer"
"- This installs the module cmis_read."
msgstr ""
"Verknüpfe Odoo mit einem CMIS-kompatiblen Server, um \n"
"Dateien an Odoo-Datensätze anzuhängen.\n"
"- Das Modul cmis-read wird installiert."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
"Verknüpfe Odoo mit einem CMIS-kompatiblen Server, um \n"
"Dateien dort abzuspeichern.\n"
"- Das Modul cmis-write wird installiert."
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr "Mit externem DMS verbinden"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
#, fuzzy #, fuzzy
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
@ -97,61 +72,61 @@ msgstr ""
"Dokumentindizierung, Volltextrecherche in Dokumenten.\n" "Dokumentindizierung, Volltextrecherche in Dokumenten.\n"
"- Das Modul document wird installiert." "- Das Modul document wird installiert."
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumente" msgstr "Dokumente"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Konfiguriere Dokumentenmanagement"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "Gruppiert durch" msgstr "Gruppiert durch"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Dokumente" msgstr "Dokumente"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Knowledge und Dokumenten Management" msgstr "Knowledge und Dokumenten Management"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr "Wissender Benutzer"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "Dokumentseiten verwalten (Wiki)" msgstr "Dokumentseiten verwalten (Wiki)"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "Dokumentenfreigabe verwalten" msgstr "Dokumentenfreigabe verwalten"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "Modell" msgstr "Modell"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
@ -159,34 +134,50 @@ msgstr ""
"Stelle Dokumentenseite und Kategorie als Wiki zur Verfügung.\n" "Stelle Dokumentenseite und Kategorie als Wiki zur Verfügung.\n"
"- Das Modul document_page wird installiert." "- Das Modul document_page wird installiert."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr "Speichere Anhänge auf externem DMS anstelle der Odoo-Dateiablage"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Attach files from an external DMS into Odoo"
#~ msgstr "Dateien aus externem DMS in Odoo einbinden"
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
#~ "to an Odoo record.\n"
#~ "- This installs the module cmis_read."
#~ msgstr ""
#~ "Verknüpfe Odoo mit einem CMIS-kompatiblen Server, um \n"
#~ "Dateien an Odoo-Datensätze anzuhängen.\n"
#~ "- Das Modul cmis-read wird installiert."
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
#~ "- This installs the module cmis_write."
#~ msgstr ""
#~ "Verknüpfe Odoo mit einem CMIS-kompatiblen Server, um \n"
#~ "Dateien dort abzuspeichern.\n"
#~ "- Das Modul cmis-write wird installiert."
#~ msgid "Connect with an external DMS"
#~ msgstr "Mit externem DMS verbinden"
#~ msgid "Store attachments in an external DMS instead of the Odoo Filestore"
#~ msgstr "Speichere Anhänge auf externem DMS anstelle der Odoo-Dateiablage"
#~ msgid "Manage documents" #~ msgid "Manage documents"
#~ msgstr "Dokumentenverwaltung" #~ msgstr "Dokumentenverwaltung"
@ -196,9 +187,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Abbrechen" #~ msgstr "Abbrechen"
#~ msgid "Configure Knowledge"
#~ msgstr "Konfiguriere Dokumentenmanagement"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Erstellt durch" #~ msgstr "Erstellt durch"

View File

@ -0,0 +1,136 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_knowledge
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \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: document_knowledge
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid ""
"Add workflow on documents per category.\n"
"- This installs the module document_page_approval."
msgstr ""
#. module: document_knowledge
#: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attachment"
msgstr ""
#. module: document_knowledge
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation"
msgstr ""
#. module: document_knowledge
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents"
msgstr ""
#. module: document_knowledge
#: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: document_knowledge
#: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration"
msgstr ""
#. module: document_knowledge
#: model:res.groups,name:document_knowledge.group_document_user
msgid "Document Knowledge user"
msgstr ""
#. module: document_knowledge
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation."
msgstr ""
#. module: document_knowledge
#: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents"
msgstr ""
#. module: document_knowledge
#: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by"
msgstr ""
#. module: document_knowledge
#: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management"
msgstr ""
#. module: document_knowledge
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)"
msgstr ""
#. module: document_knowledge
#: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid ""
"Manage documents and knowledge-related\n"
" applications\n"
" "
msgstr ""
#. module: document_knowledge
#: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model"
msgstr ""
#. module: document_knowledge
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid ""
"Provide document page and category as a wiki.\n"
"- This installs the module document_page."
msgstr ""
#. module: document_knowledge
#: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model"
msgstr ""
#. module: document_knowledge
#: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings"
msgstr ""
#. module: document_knowledge
#: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid ""
"When you set this field all users will be able to manage attachments "
"centrally, from the Document Knowledge/Documents menu."
msgstr ""

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Ρυθμίσεις" msgstr "Ρυθμίσεις"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Ρυθμίσεις" msgstr "Ρυθμίσεις"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Γνωσιακή"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Έγγραφα" msgstr "Έγγραφα"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Έγγραφα"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Γνωσιακή" msgstr "Γνωσιακή"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Γνωσιακή"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,157 +18,126 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Created by" #~ msgid "Created by"

View File

@ -18,157 +18,126 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,159 +19,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuration" msgstr "Configuration"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuration" msgstr "Configuration"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Knowledge"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documents" msgstr "Documents"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Documents"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Knowledge" msgstr "Knowledge"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Knowledge"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "knowledge.config.settings" msgstr "knowledge.config.settings"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Conocimiento"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Configurar base de conocimiento"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Conocimiento" msgstr "Conocimiento"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Gestión de documentos y de la base de conocimiento" msgstr "Gestión de documentos y de la base de conocimiento"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Conocimiento"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "Gestionar páginas de documento (Wiki)" msgstr "Gestionar páginas de documento (Wiki)"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "Gestionar aprobación de documentos" msgstr "Gestionar aprobación de documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "Ajustes" msgstr "Ajustes"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Cancelar" #~ msgstr "Cancelar"
#~ msgid "Configure Knowledge"
#~ msgstr "Configurar base de conocimiento"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Creado por" #~ msgstr "Creado por"

View File

@ -19,159 +19,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Conocimientos"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Configurar Conocimiento"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Conocimientos" msgstr "Conocimientos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Gestión de Documentos y Conocimientos" msgstr "Gestión de Documentos y Conocimientos"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Conocimientos"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -183,9 +153,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Cancelar" #~ msgstr "Cancelar"
#~ msgid "Configure Knowledge"
#~ msgstr "Configurar Conocimiento"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Creado por" #~ msgstr "Creado por"

View File

@ -18,158 +18,127 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -19,157 +19,127 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Documentos"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,159 +19,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Conocimiento"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Documentos"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Conocimiento" msgstr "Conocimiento"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Conocimiento"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,159 +19,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Conocimiento"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Conocimiento"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Conocimiento" msgstr "Conocimiento"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Conocimiento"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,159 +19,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Gestión de Conocimiento"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Gestión de Conocimiento"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Gestión de Conocimiento" msgstr "Gestión de Conocimiento"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Gestión de Conocimiento"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,157 +18,126 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -19,159 +19,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Conocimiento"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Documentos"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Conocimiento" msgstr "Conocimiento"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Conocimiento"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,158 +19,128 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Documentos"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -19,159 +19,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Conocimiento"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Documentos"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Conocimiento" msgstr "Conocimiento"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Conocimiento"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -19,158 +19,127 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Seadistused" msgstr "Seadistused"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Seadistused" msgstr "Seadistused"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,157 +19,126 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "پیکربندی" msgstr "پیکربندی"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "پیکربندی" msgstr "پیکربندی"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "دانش"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "اسناد" msgstr "اسناد"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "اسناد"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "دانش" msgstr "دانش"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "دانش"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Konfiguraatio" msgstr "Konfiguraatio"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguraatio" msgstr "Konfiguraatio"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Tietämys"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumentit" msgstr "Dokumentit"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Konfiguroi tietämyksenhallinta -moduuli"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Tietämys" msgstr "Tietämys"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Tietämyksen ja asiakirjojen -hallinta" msgstr "Tietämyksen ja asiakirjojen -hallinta"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Tietämys"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Peruuta" #~ msgstr "Peruuta"
#~ msgid "Configure Knowledge"
#~ msgstr "Konfiguroi tietämyksenhallinta -moduuli"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Luonut" #~ msgstr "Luonut"

View File

@ -19,8 +19,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.3.2\n" "X-Generator: Weblate 4.3.2\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
@ -28,65 +28,40 @@ msgstr ""
"Ajouter un processus sur les documents par catégorie.\n" "Ajouter un processus sur les documents par catégorie.\n"
"- Ceci installe le module document_page_approval." "- Ceci installe le module document_page_approval."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr "Joindre des fichiers à partir d'un SGD externe à Odoo"
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "Pièce jointe" msgstr "Pièce jointe"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "Liste des pièces jointes et indexation de documents" msgstr "Liste des pièces jointes et indexation de documents"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "Accès central aux documents" msgstr "Accès central aux documents"
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "Paramétrage" msgstr "Paramétrage"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuration" msgstr "Configuration"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Utilisateur de connaissances"
"- This installs the module cmis_read."
msgstr ""
"Connecter Odoo avec un serveur compatible CMIS pour joindre des fichiers\n"
"à un enregistrement Odoo.\n"
"- Ceci installe le module cmis_read."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
"Connectez Odoo avec un serveur compatible CMIS pour enregistrer les "
"fichiers.\n"
"- Cecu installe le module cmis_write."
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr "Connecter avec un SGD externe"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
@ -94,43 +69,43 @@ msgstr ""
"Indexation des documents, recherche dans tout le texte des pièces jointes.\n" "Indexation des documents, recherche dans tout le texte des pièces jointes.\n"
"- Ceci installe le module attachment_indexation." "- Ceci installe le module attachment_indexation."
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documents" msgstr "Documents"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Configurer la base de connaissances"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "Regrouper par" msgstr "Regrouper par"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Connaissances" msgstr "Connaissances"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Base de connaissance et documentaire" msgstr "Base de connaissance et documentaire"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr "Utilisateur de connaissances"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "Gérer des pages (wiki)" msgstr "Gérer des pages (wiki)"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
@ -140,18 +115,18 @@ msgstr ""
" la connaissance\n" " la connaissance\n"
" " " "
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "Gérer lapprobation sur les pages" msgstr "Gérer lapprobation sur les pages"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "Modèle" msgstr "Modèle"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
@ -159,39 +134,60 @@ msgstr ""
"Fournir les pages et catégories de documents comme un wiki.\n" "Fournir les pages et catégories de documents comme un wiki.\n"
"- Ceci installe le module document_page." "- Ceci installe le module document_page."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "Modèle de la ressource" msgstr "Modèle de la ressource"
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "Paramètres" msgstr "Paramètres"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore" #, fuzzy
msgstr ""
"Enregistrer les pièces jointes dans un SGD externe au lieu du stockage de "
"fichier Odoo"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr "Lobjet de la base de données auquel cette pièce-jointe sera attachée."
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
"Quand ce champ est spécifié, tous les utilisateurs pourront gérer " "Quand ce champ est spécifié, tous les utilisateurs pourront gérer "
"centralement leurs pièces jointes, à partir du menu Connaissances / " "centralement leurs pièces jointes, à partir du menu Connaissances / "
"Documents." "Documents."
#~ msgid "Attach files from an external DMS into Odoo"
#~ msgstr "Joindre des fichiers à partir d'un SGD externe à Odoo"
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
#~ "to an Odoo record.\n"
#~ "- This installs the module cmis_read."
#~ msgstr ""
#~ "Connecter Odoo avec un serveur compatible CMIS pour joindre des fichiers\n"
#~ "à un enregistrement Odoo.\n"
#~ "- Ceci installe le module cmis_read."
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
#~ "- This installs the module cmis_write."
#~ msgstr ""
#~ "Connectez Odoo avec un serveur compatible CMIS pour enregistrer les "
#~ "fichiers.\n"
#~ "- Cecu installe le module cmis_write."
#~ msgid "Connect with an external DMS"
#~ msgstr "Connecter avec un SGD externe"
#~ msgid "Store attachments in an external DMS instead of the Odoo Filestore"
#~ msgstr ""
#~ "Enregistrer les pièces jointes dans un SGD externe au lieu du stockage de "
#~ "fichier Odoo"
#~ msgid "The database object this attachment will be attached to."
#~ msgstr ""
#~ "Lobjet de la base de données auquel cette pièce-jointe sera attachée."
#~ msgid "Manage documents" #~ msgid "Manage documents"
#~ msgstr "Gérer les documents" #~ msgstr "Gérer les documents"
@ -201,9 +197,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Annuler" #~ msgstr "Annuler"
#~ msgid "Configure Knowledge"
#~ msgstr "Configurer la base de connaissances"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Créé par" #~ msgstr "Créé par"

View File

@ -18,157 +18,126 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Coñecemento"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Documentos"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Coñecemento" msgstr "Coñecemento"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Coñecemento"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -18,158 +18,128 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "રુપરેખાંકન" msgstr "રુપરેખાંકન"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "રુપરેખાંકન" msgstr "રુપરેખાંકન"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "દસ્તાવેજો" msgstr "દસ્તાવેજો"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "દસ્તાવેજો"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "הגדרות תצורה" msgstr "הגדרות תצורה"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "הגדרות תצורה" msgstr "הגדרות תצורה"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "ידע"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "מסמכים" msgstr "מסמכים"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "מסמכים"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "ידע" msgstr "ידע"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "ידע"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -17,8 +17,8 @@ msgstr ""
"n % 10 == 0) ? 2 : 3));\n" "n % 10 == 0) ? 2 : 3));\n"
"X-Generator: Weblate 3.10\n" "X-Generator: Weblate 3.10\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
@ -26,64 +26,39 @@ msgstr ""
"הוסף תהליך עבודה על מסמכים בכל קטגוריה.\n" "הוסף תהליך עבודה על מסמכים בכל קטגוריה.\n"
"- התקנה של המודול document_page_approval." "- התקנה של המודול document_page_approval."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr "צירוף מסמכים מתכנת ניהול חיצונית (DMS) לתוך Odoo"
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "קובץ מצורף" msgstr "קובץ מצורף"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "רשימת קבצים מצורפים ואינדקס מסמכים" msgstr "רשימת קבצים מצורפים ואינדקס מסמכים"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "גישה מרכזית למסמכים" msgstr "גישה מרכזית למסמכים"
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "הגדרות תצורה" msgstr "הגדרות תצורה"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "הגדרות" msgstr "הגדרות"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
"חבר את Odoo לשרת תואם CMIS כדי לצרף קבצים\n"
"לOdoo.\n"
"- התקנה של המודול cmis_read."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
"חבר את Odoo לשרת תואם CMIS לאחסון קבצים.\n"
"- התקנה של המודול cmis_write."
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr "קישור ל- DMS תכנת ניהול מסמכים חיצונית"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
@ -91,90 +66,102 @@ msgstr ""
"אינדקס מסמכים, חיפוש טקסט מלא של קבצים מצורפים.\n" "אינדקס מסמכים, חיפוש טקסט מלא של קבצים מצורפים.\n"
"- התקנה של המודול attachment_indexation." "- התקנה של המודול attachment_indexation."
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "מסמכים" msgstr "מסמכים"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "מסמכים"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "קבץ לפי" msgstr "קבץ לפי"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "ידע" msgstr "ידע"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "ניהול ידע ומסמכים" msgstr "ניהול ידע ומסמכים"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Attach files from an external DMS into Odoo"
#~ msgstr "צירוף מסמכים מתכנת ניהול חיצונית (DMS) לתוך Odoo"
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
#~ "to an Odoo record.\n"
#~ "- This installs the module cmis_read."
#~ msgstr ""
#~ "חבר את Odoo לשרת תואם CMIS כדי לצרף קבצים\n"
#~ "לOdoo.\n"
#~ "- התקנה של המודול cmis_read."
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
#~ "- This installs the module cmis_write."
#~ msgstr ""
#~ "חבר את Odoo לשרת תואם CMIS לאחסון קבצים.\n"
#~ "- התקנה של המודול cmis_write."
#~ msgid "Connect with an external DMS"
#~ msgstr "קישור ל- DMS תכנת ניהול מסמכים חיצונית"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "कॉन्फ़िगरेशन" msgstr "कॉन्फ़िगरेशन"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "कॉन्फ़िगरेशन" msgstr "कॉन्फ़िगरेशन"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "ज्ञान"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "ज्ञान"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "ज्ञान" msgstr "ज्ञान"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "ज्ञान"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -19,159 +19,129 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && 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" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Postavke" msgstr "Postavke"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Postavke" msgstr "Postavke"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Znanje"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumenti" msgstr "Dokumenti"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Dokumenti"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Znanje" msgstr "Znanje"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Upravljanje znanjem i dokumentima" msgstr "Upravljanje znanjem i dokumentima"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Znanje"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Beállítások" msgstr "Beállítások"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Beállítások" msgstr "Beállítások"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Tudás"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumentumok" msgstr "Dokumentumok"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Tudástár beállítása"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Tudás" msgstr "Tudás"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Tudástár és dokumentum kezelés" msgstr "Tudástár és dokumentum kezelés"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Tudás"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Mégsem" #~ msgstr "Mégsem"
#~ msgid "Configure Knowledge"
#~ msgstr "Tudástár beállítása"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Készítette" #~ msgstr "Készítette"

View File

@ -18,158 +18,127 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Կոնֆիգուրացիա" msgstr "Կոնֆիգուրացիա"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Կոնֆիգուրացիա" msgstr "Կոնֆիգուրացիա"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,158 +19,127 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Konfigurasi" msgstr "Konfigurasi"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Konfigurasi" msgstr "Konfigurasi"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,157 +18,126 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Created by" #~ msgid "Created by"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configurazione" msgstr "Configurazione"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configurazione" msgstr "Configurazione"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Know how"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documenti" msgstr "Documenti"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Configura Knowledge"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Know how" msgstr "Know how"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Knowledge e Gestione documentale" msgstr "Knowledge e Gestione documentale"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Know how"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Annulla" #~ msgstr "Annulla"
#~ msgid "Configure Knowledge"
#~ msgstr "Configura Knowledge"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Creato da" #~ msgstr "Creato da"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "設定" msgstr "設定"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "設定" msgstr "設定"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "ナレッジ"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "文書" msgstr "文書"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "文書"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "ナレッジ" msgstr "ナレッジ"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "ナレッジ"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,158 +18,127 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "კონფიგურაცია" msgstr "კონფიგურაცია"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "კონფიგურაცია" msgstr "კონფიგურაცია"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Tawila" msgstr "Tawila"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Tawila" msgstr "Tawila"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Tamusni"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Arraten" msgstr "Arraten"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Swel Tamusni"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Tamusni" msgstr "Tamusni"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Asefrek n tmusni d warraten" msgstr "Asefrek n tmusni d warraten"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Tamusni"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Sefsex" #~ msgstr "Sefsex"
#~ msgid "Configure Knowledge"
#~ msgstr "Swel Tamusni"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Yerna-t" #~ msgstr "Yerna-t"

View File

@ -18,158 +18,127 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Баптау" msgstr "Баптау"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Баптау" msgstr "Баптау"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "환경 설정" msgstr "환경 설정"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "환경 설정" msgstr "환경 설정"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "지식"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "문서" msgstr "문서"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "지식 구성"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "지식" msgstr "지식"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "지식 및 문서 관리" msgstr "지식 및 문서 관리"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "지식"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "취소" #~ msgstr "취소"
#~ msgid "Configure Knowledge"
#~ msgstr "지식 구성"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "작성자" #~ msgstr "작성자"

View File

@ -18,157 +18,126 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "ການກໍານົດຄ່າ" msgstr "ການກໍານົດຄ່າ"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "ການກໍານົດຄ່າ" msgstr "ການກໍານົດຄ່າ"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "ການຄຸ້ມຄອງເອກະສານ"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "ການຄຸ້ມຄອງເອກະສານ"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "ການຄຸ້ມຄອງເອກະສານ" msgstr "ການຄຸ້ມຄອງເອກະສານ"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "ການຄຸ້ມຄອງເອກະສານ"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -19,158 +19,127 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n" "%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Nustatymai" msgstr "Nustatymai"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Nustatymai" msgstr "Nustatymai"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,158 +19,128 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n" "2);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Uzstādījumi" msgstr "Uzstādījumi"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Uzstādījumi" msgstr "Uzstādījumi"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumenti" msgstr "Dokumenti"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Dokumenti"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Конфигурација" msgstr "Конфигурација"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Конфигурација" msgstr "Конфигурација"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Знаење"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Документи" msgstr "Документи"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Конфигурирај го Знаење"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Знаење" msgstr "Знаење"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Менаџирање на знаење и документи" msgstr "Менаџирање на знаење и документи"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Знаење"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Откажи" #~ msgstr "Откажи"
#~ msgid "Configure Knowledge"
#~ msgstr "Конфигурирај го Знаење"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Креирано од" #~ msgstr "Креирано од"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Тохиргоо" msgstr "Тохиргоо"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Тохиргоо" msgstr "Тохиргоо"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Баримт"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Баримтууд" msgstr "Баримтууд"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Баримтын Тохиргоо"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Баримт" msgstr "Баримт"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Бичиг Баримт, Мэдлэгийн менежмент" msgstr "Бичиг Баримт, Мэдлэгийн менежмент"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Баримт"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Цуцлах" #~ msgstr "Цуцлах"
#~ msgid "Configure Knowledge"
#~ msgstr "Баримтын Тохиргоо"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Үүсгэгч" #~ msgstr "Үүсгэгч"

View File

@ -19,159 +19,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Konfigurasjon" msgstr "Konfigurasjon"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Konfigurasjon" msgstr "Konfigurasjon"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Kunnskap"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumenter" msgstr "Dokumenter"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Dokumenter"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Kunnskap" msgstr "Kunnskap"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Kunnskap"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Instellingen" msgstr "Instellingen"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Instellingen" msgstr "Instellingen"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Kennis"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documenten" msgstr "Documenten"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Configureer Knowledge"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Kennis" msgstr "Kennis"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Document & Kennis Management" msgstr "Document & Kennis Management"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Kennis"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Annuleren" #~ msgstr "Annuleren"
#~ msgid "Configure Knowledge"
#~ msgstr "Configureer Knowledge"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Aangemaakt door" #~ msgstr "Aangemaakt door"

View File

@ -19,159 +19,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Instellingen" msgstr "Instellingen"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Instellingen" msgstr "Instellingen"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Kennis"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Kennis"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Kennis" msgstr "Kennis"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Kennis"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,157 +19,127 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documenten" msgstr "Documenten"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Documenten"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Display Name" #~ msgid "Display Name"

View File

@ -19,159 +19,129 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n" "|| n%100>=20) ? 1 : 2);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Konfiguracja" msgstr "Konfiguracja"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguracja" msgstr "Konfiguracja"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Wiedza"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumenty" msgstr "Dokumenty"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Skonfiguruj bibliotekę"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Wiedza" msgstr "Wiedza"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Zarządzanie wiedzą i dokumentami" msgstr "Zarządzanie wiedzą i dokumentami"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Wiedza"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -183,9 +153,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Anuluj" #~ msgstr "Anuluj"
#~ msgid "Configure Knowledge"
#~ msgstr "Skonfiguruj bibliotekę"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Utworzone przez" #~ msgstr "Utworzone przez"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configuração" msgstr "Configuração"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuração" msgstr "Configuração"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Conhecimento"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Configurar Conhecimento"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Conhecimento" msgstr "Conhecimento"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Gestão de Conhecimento e Documentos" msgstr "Gestão de Conhecimento e Documentos"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Conhecimento"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Cancelar" #~ msgstr "Cancelar"
#~ msgid "Configure Knowledge"
#~ msgstr "Configurar Conhecimento"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Criado por" #~ msgstr "Criado por"

View File

@ -20,8 +20,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.0.1\n" "X-Generator: Weblate 3.0.1\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
@ -29,65 +29,41 @@ msgstr ""
"Adicione fluxo de trabalho em documentos por categoria.\n" "Adicione fluxo de trabalho em documentos por categoria.\n"
"- Isso instala o módulo document_page_approval." "- Isso instala o módulo document_page_approval."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr "Anexar arquivos de um DMS externo no Odoo"
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configurações" msgstr "Configurações"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configuração" msgstr "Configuração"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Conhecimento"
"- This installs the module cmis_read."
msgstr ""
"Conecte o Odoo a um servidor compatível com CMIS para anexar arquivos\n"
"para um registro Odoo.\n"
"- Isso instala o módulo cmis_read."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
"Conecte o Odoo a um servidor compatível com CMIS para armazenar arquivos.\n"
"- Isso instala o módulo cmis_write."
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr "Conecte-se com um DMS externo"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
#, fuzzy #, fuzzy
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
@ -96,44 +72,43 @@ msgstr ""
"Indexação de documentos, pesquisa de texto completo de anexos.\n" "Indexação de documentos, pesquisa de texto completo de anexos.\n"
"- Isso instala o documento do módulo." "- Isso instala o documento do módulo."
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documentos" msgstr "Documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Configurar Conhecimento"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "Agrupar por" msgstr "Agrupar por"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Conhecimento" msgstr "Conhecimento"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Gestão de Conhecimento e Documentos" msgstr "Gestão de Conhecimento e Documentos"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Conhecimento"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "Gerenciar páginas de documentos (Wiki)" msgstr "Gerenciar páginas de documentos (Wiki)"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
#, fuzzy #, fuzzy
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
@ -141,18 +116,18 @@ msgid ""
" " " "
msgstr "Gerenciar documentos e aplicativos relacionados ao conhecimento" msgstr "Gerenciar documentos e aplicativos relacionados ao conhecimento"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "Gerenciar aprovação de documentos" msgstr "Gerenciar aprovação de documentos"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "Modelo" msgstr "Modelo"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
@ -160,34 +135,50 @@ msgstr ""
"Forneça a página do documento e a categoria como um wiki.\n" "Forneça a página do documento e a categoria como um wiki.\n"
"- Isso instala o módulo document_page." "- Isso instala o módulo document_page."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "Configurações" msgstr "Configurações"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr "Armazene anexos em um DMS externo em vez do Odoo Filestore"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Attach files from an external DMS into Odoo"
#~ msgstr "Anexar arquivos de um DMS externo no Odoo"
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
#~ "to an Odoo record.\n"
#~ "- This installs the module cmis_read."
#~ msgstr ""
#~ "Conecte o Odoo a um servidor compatível com CMIS para anexar arquivos\n"
#~ "para um registro Odoo.\n"
#~ "- Isso instala o módulo cmis_read."
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
#~ "- This installs the module cmis_write."
#~ msgstr ""
#~ "Conecte o Odoo a um servidor compatível com CMIS para armazenar "
#~ "arquivos.\n"
#~ "- Isso instala o módulo cmis_write."
#~ msgid "Connect with an external DMS"
#~ msgstr "Conecte-se com um DMS externo"
#~ msgid "Store attachments in an external DMS instead of the Odoo Filestore"
#~ msgstr "Armazene anexos em um DMS externo em vez do Odoo Filestore"
#~ msgid "Manage documents" #~ msgid "Manage documents"
#~ msgstr "Gerenciar documentos" #~ msgstr "Gerenciar documentos"
@ -197,9 +188,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Cancelar" #~ msgstr "Cancelar"
#~ msgid "Configure Knowledge"
#~ msgstr "Configurar Conhecimento"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Criado por" #~ msgstr "Criado por"

View File

@ -18,157 +18,126 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -19,159 +19,129 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
"2:1));\n" "2:1));\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Configurare" msgstr "Configurare"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Configurare" msgstr "Configurare"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Cunoștințe"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Documente" msgstr "Documente"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Configureaza Cunostințele"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Cunoștințe" msgstr "Cunoștințe"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Managementul Cunostințelor și a Documentelor" msgstr "Managementul Cunostințelor și a Documentelor"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Cunoștințe"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -183,9 +153,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Anulează" #~ msgstr "Anulează"
#~ msgid "Configure Knowledge"
#~ msgstr "Configureaza Cunostințele"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Creat de" #~ msgstr "Creat de"

View File

@ -21,8 +21,8 @@ msgstr ""
"%100>=11 && n%100<=14)? 2 : 3);\n" "%100>=11 && n%100<=14)? 2 : 3);\n"
"X-Generator: Weblate 4.3.2\n" "X-Generator: Weblate 4.3.2\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
@ -30,64 +30,40 @@ msgstr ""
"Добавить рабочий процесс для документов по категории.\n" "Добавить рабочий процесс для документов по категории.\n"
"- Устанавливает модуль document_page_approval." "- Устанавливает модуль document_page_approval."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr "Прикрепите файлы из внешнего DMS в Odoo"
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "Вложение" msgstr "Вложение"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "Список вложений и индексация документов" msgstr "Список вложений и индексация документов"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "Централизованный доступ к документам" msgstr "Централизованный доступ к документам"
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "Конфигурационные настройки" msgstr "Конфигурационные настройки"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Настройка" msgstr "Настройка"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Пользователь знаний"
"- This installs the module cmis_read."
msgstr ""
"Подключите Odoo к CMIS-совместимому серверу для прикрепления файлов\n"
"в запись Odoo.\n"
"- Устанавливает модуль cmis_read."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
"Подключите Odoo к CMIS-совместимому серверу для хранения файлов.\n"
"- Устанавливает модуль cmis_write."
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr "Подключитесь к внешней DMS"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
@ -95,43 +71,43 @@ msgstr ""
"Индексация документов, полнотекстовый поиск вложений.\n" "Индексация документов, полнотекстовый поиск вложений.\n"
"- Устанавливает модуль attachment_indexation." "- Устанавливает модуль attachment_indexation."
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Документы" msgstr "Документы"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Настройка знаний"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "Группировать по" msgstr "Группировать по"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Знания" msgstr "Знания"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Управление знаниями и документами" msgstr "Управление знаниями и документами"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr "Пользователь знаний"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "Управление страницами документов (Wiki)" msgstr "Управление страницами документов (Wiki)"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
@ -141,18 +117,18 @@ msgstr ""
" приложения\n" " приложения\n"
" " " "
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "Управление согласованием документов" msgstr "Управление согласованием документов"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "Модель" msgstr "Модель"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
@ -160,36 +136,55 @@ msgstr ""
"Предоставить страницу и категорию документа как вики.\n" "Предоставить страницу и категорию документа как вики.\n"
"- Устанавливает модуль document_page." "- Устанавливает модуль document_page."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "Модель ресурса" msgstr "Модель ресурса"
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "Настройки" msgstr "Настройки"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore" #, fuzzy
msgstr "Храните вложения во внешней DMS вместо файлового хранилища Odoo"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr "Объект базы данных, к которому будет прикреплено это вложение."
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
"Когда вы установите это поле, все пользователи смогут управлять вложениями " "Когда вы установите это поле, все пользователи смогут управлять вложениями "
"централизованно, из меню Знания/документы." "централизованно, из меню Знания/документы."
#~ msgid "Attach files from an external DMS into Odoo"
#~ msgstr "Прикрепите файлы из внешнего DMS в Odoo"
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
#~ "to an Odoo record.\n"
#~ "- This installs the module cmis_read."
#~ msgstr ""
#~ "Подключите Odoo к CMIS-совместимому серверу для прикрепления файлов\n"
#~ "в запись Odoo.\n"
#~ "- Устанавливает модуль cmis_read."
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
#~ "- This installs the module cmis_write."
#~ msgstr ""
#~ "Подключите Odoo к CMIS-совместимому серверу для хранения файлов.\n"
#~ "- Устанавливает модуль cmis_write."
#~ msgid "Connect with an external DMS"
#~ msgstr "Подключитесь к внешней DMS"
#~ msgid "Store attachments in an external DMS instead of the Odoo Filestore"
#~ msgstr "Храните вложения во внешней DMS вместо файлового хранилища Odoo"
#~ msgid "The database object this attachment will be attached to."
#~ msgstr "Объект базы данных, к которому будет прикреплено это вложение."
#~ msgid "Manage documents" #~ msgid "Manage documents"
#~ msgstr "Управлять документами" #~ msgstr "Управлять документами"
@ -199,9 +194,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Отменить" #~ msgstr "Отменить"
#~ msgid "Configure Knowledge"
#~ msgstr "Настройка знаний"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Создано" #~ msgstr "Создано"

View File

@ -18,158 +18,128 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Nastavenie" msgstr "Nastavenie"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Nastavenie" msgstr "Nastavenie"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumenty" msgstr "Dokumenty"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Dokumenty"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -19,8 +19,8 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n" "%100==4 ? 2 : 3);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
@ -28,65 +28,41 @@ msgstr ""
"Dodaj delotok dokumentov po kategoriji.\n" "Dodaj delotok dokumentov po kategoriji.\n"
"- namesti modul document_page_approval." "- namesti modul document_page_approval."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr "Pripni datoteke iz zunanjega DMS v Odoo"
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "knowledge.config.settings" msgstr "knowledge.config.settings"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Nastavitve" msgstr "Nastavitve"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Baza znanja"
"- This installs the module cmis_read."
msgstr ""
"Poveži Odoo s CMIS združljivim strežnikom za pripenjanje datotek\n"
"Odoo zapisu.\n"
"- namesti modul cmis_read."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
"Poveži Odoo s CMIS združljivim strežnikom za hrambo datotek.\n"
"- namesti modul cmis_write."
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr "Poveži z zunanjim DMS"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
#, fuzzy #, fuzzy
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
@ -95,62 +71,61 @@ msgstr ""
"Indeksacija dokumentov, iskanje po vsebini prilog.\n" "Indeksacija dokumentov, iskanje po vsebini prilog.\n"
"- Namesti modul 'document'." "- Namesti modul 'document'."
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumenti" msgstr "Dokumenti"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Nastavitve baze znanja"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Baza znanja" msgstr "Baza znanja"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Baza znanja in upravljanje dokumentov" msgstr "Baza znanja in upravljanje dokumentov"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Baza znanja"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "Upravljanje strani dokumentov (Wiki)" msgstr "Upravljanje strani dokumentov (Wiki)"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "Upravljanje odobritev dokumentov" msgstr "Upravljanje odobritev dokumentov"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
@ -158,34 +133,49 @@ msgstr ""
"Zagotovi stran dokumenta in kategorijo kot wiki.\n" "Zagotovi stran dokumenta in kategorijo kot wiki.\n"
"- namesti modul document_page." "- namesti modul document_page."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "Nastavitve" msgstr "Nastavitve"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr "Hrani priponke na zunanjem DMS namesto v Odoo Filestore"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Attach files from an external DMS into Odoo"
#~ msgstr "Pripni datoteke iz zunanjega DMS v Odoo"
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to attach files\n"
#~ "to an Odoo record.\n"
#~ "- This installs the module cmis_read."
#~ msgstr ""
#~ "Poveži Odoo s CMIS združljivim strežnikom za pripenjanje datotek\n"
#~ "Odoo zapisu.\n"
#~ "- namesti modul cmis_read."
#~ msgid ""
#~ "Connect Odoo with a CMIS compatible server to store files.\n"
#~ "- This installs the module cmis_write."
#~ msgstr ""
#~ "Poveži Odoo s CMIS združljivim strežnikom za hrambo datotek.\n"
#~ "- namesti modul cmis_write."
#~ msgid "Connect with an external DMS"
#~ msgstr "Poveži z zunanjim DMS"
#~ msgid "Store attachments in an external DMS instead of the Odoo Filestore"
#~ msgstr "Hrani priponke na zunanjem DMS namesto v Odoo Filestore"
#~ msgid "Manage documents" #~ msgid "Manage documents"
#~ msgstr "Upravljanje dokumentov" #~ msgstr "Upravljanje dokumentov"
@ -195,9 +185,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Preklic" #~ msgstr "Preklic"
#~ msgid "Configure Knowledge"
#~ msgstr "Nastavitve baze znanja"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Ustvaril" #~ msgstr "Ustvaril"

View File

@ -19,159 +19,129 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 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" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Konfiguracija" msgstr "Konfiguracija"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguracija" msgstr "Konfiguracija"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Znanje"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumenti" msgstr "Dokumenti"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Dokumenti"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Znanje" msgstr "Znanje"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Znanje"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"

View File

@ -20,159 +20,129 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 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" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Podešavanje" msgstr "Podešavanje"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Podešavanje" msgstr "Podešavanje"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Znanje"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokumenti" msgstr "Dokumenti"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Dokumenti"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Znanje" msgstr "Znanje"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Znanje"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Konfiguration" msgstr "Konfiguration"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguration" msgstr "Konfiguration"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Kunskap"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Dokument" msgstr "Dokument"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Konfigurera kunskapssystemet"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Kunskap" msgstr "Kunskap"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Dokumenthantering och kunskapsutveckling" msgstr "Dokumenthantering och kunskapsutveckling"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "Kunskap"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -182,9 +152,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Avbryt" #~ msgstr "Avbryt"
#~ msgid "Configure Knowledge"
#~ msgstr "Konfigurera kunskapssystemet"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Skapad av" #~ msgstr "Skapad av"

View File

@ -18,159 +18,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "ตั้งค่า" msgstr "ตั้งค่า"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "ตั้งค่า" msgstr "ตั้งค่า"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "ความรู้"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "เอกสาร" msgstr "เอกสาร"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "เอกสาร"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "ความรู้" msgstr "ความรู้"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "ความรู้"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,8 +19,8 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Weblate 4.3.2\n" "X-Generator: Weblate 4.3.2\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
@ -28,59 +28,40 @@ msgstr ""
"Kategori başına belgelere iş akışı ekleyin.\n" "Kategori başına belgelere iş akışı ekleyin.\n"
"- Bu, document_page_approval modülünü kurar." "- Bu, document_page_approval modülünü kurar."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr "Dosyaları harici bir DMS'den Odoo'ya ekleyin"
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "Ek" msgstr "Ek"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "Ek Listelerini ve Belgeleri İndeksleme" msgstr "Ek Listelerini ve Belgeleri İndeksleme"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "Belgelere merkezi erişim" msgstr "Belgelere merkezi erişim"
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
msgid "Config Settings" msgid "Config Settings"
msgstr "Yapılandırma Ayarları" msgstr "Yapılandırma Ayarları"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Yapılandırma" msgstr "Yapılandırma"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "Bilgi Birikimi Kullanıcısı"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
@ -88,43 +69,43 @@ msgstr ""
"Belge indeksleme, eklerin tam metin araması.\n" "Belge indeksleme, eklerin tam metin araması.\n"
"- Bu, modül ek indekslemeyi yükler." "- Bu, modül ek indekslemeyi yükler."
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "Belgeler" msgstr "Belgeler"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "Bilgi Birikimini Yapılandır"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "Gruplama" msgstr "Gruplama"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "Bilgi Birikimi" msgstr "Bilgi Birikimi"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "Bilgi ve Belge Yönetimi" msgstr "Bilgi ve Belge Yönetimi"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr "Bilgi Birikimi Kullanıcısı"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "Belge sayfalarını yönetin (Wiki)" msgstr "Belge sayfalarını yönetin (Wiki)"
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
@ -134,18 +115,18 @@ msgstr ""
" Uygulama\n" " Uygulama\n"
" " " "
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "Belge onayını yönetme" msgstr "Belge onayını yönetme"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "Model" msgstr "Model"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
@ -153,36 +134,36 @@ msgstr ""
"Bir wiki olarak belge sayfası ve kategori sağlayın.\n" "Bir wiki olarak belge sayfası ve kategori sağlayın.\n"
"- Bu, document_page modülünü kurar." "- Bu, document_page modülünü kurar."
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "Kaynak Model" msgstr "Kaynak Model"
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "Ayarlar" msgstr "Ayarlar"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore" #, fuzzy
msgstr "Ekleri Odoo Filestore yerine harici bir DMS'de saklayın"
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr "Bu ekin ekleneceği veritabanı nesnesi."
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
"Bu alanı ayarladığınızda, tüm kullanıcılar Ekleri Bilgi/Belgeler menüsünden " "Bu alanı ayarladığınızda, tüm kullanıcılar Ekleri Bilgi/Belgeler menüsünden "
"merkezi olarak yönetebilecektir." "merkezi olarak yönetebilecektir."
#~ msgid "Attach files from an external DMS into Odoo"
#~ msgstr "Dosyaları harici bir DMS'den Odoo'ya ekleyin"
#~ msgid "Store attachments in an external DMS instead of the Odoo Filestore"
#~ msgstr "Ekleri Odoo Filestore yerine harici bir DMS'de saklayın"
#~ msgid "The database object this attachment will be attached to."
#~ msgstr "Bu ekin ekleneceği veritabanı nesnesi."
#~ msgid "Manage documents" #~ msgid "Manage documents"
#~ msgstr "Belgeleri Yönet" #~ msgstr "Belgeleri Yönet"
@ -192,9 +173,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "İptal" #~ msgstr "İptal"
#~ msgid "Configure Knowledge"
#~ msgstr "Bilgi Birikimini Yapılandır"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "Oluşturan" #~ msgstr "Oluşturan"

View File

@ -19,158 +19,127 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 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" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Налаштування" msgstr "Налаштування"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Налаштування" msgstr "Налаштування"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -18,158 +18,127 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "Cấu hình" msgstr "Cấu hình"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "Cấu hình" msgstr "Cấu hình"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" msgid "Document Knowledge user"
"Connect Odoo with a CMIS compatible server to attach files\n"
"to an Odoo record.\n"
"- This installs the module cmis_read."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
msgid "Documents Knowledge"
msgstr ""
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
msgid "Knowledge user"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -19,159 +19,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "配置" msgstr "配置"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "配置" msgstr "配置"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "知识"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "文档" msgstr "文档"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "配置知识库"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "知识" msgstr "知识"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "知识和文档管理" msgstr "知识和文档管理"
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "知识"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Manage documents" #~ msgid "Manage documents"
@ -183,9 +153,6 @@ msgstr ""
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "取消" #~ msgstr "取消"
#~ msgid "Configure Knowledge"
#~ msgstr "配置知识库"
#~ msgid "Created by" #~ msgid "Created by"
#~ msgstr "创建人" #~ msgstr "创建人"

View File

@ -19,159 +19,129 @@ msgstr ""
"Content-Transfer-Encoding: \n" "Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "" msgid ""
"Add workflow on documents per category.\n" "Add workflow on documents per category.\n"
"- This installs the module document_page_approval." "- This installs the module document_page_approval."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_read #: model:ir.model,name:document_knowledge.model_ir_attachment
msgid "Attach files from an external DMS into Odoo"
msgstr ""
#. module: knowledge
#: model:ir.model,name:knowledge.model_ir_attachment
msgid "Attachment" msgid "Attachment"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_attachment_indexation #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid "Attachments List and Document Indexation" msgid "Attachments List and Document Indexation"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__group_ir_attachment_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__group_ir_attachment_user
#: model:res.groups,name:knowledge.group_ir_attachment_user #: model:res.groups,name:document_knowledge.group_ir_attachment_user
msgid "Central access to Documents" msgid "Central access to Documents"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model,name:knowledge.model_res_config_settings #: model:ir.model,name:document_knowledge.model_res_config_settings
#, fuzzy #, fuzzy
msgid "Config Settings" msgid "Config Settings"
msgstr "設置" msgstr "設置"
#. module: knowledge #. module: document_knowledge
#: model:ir.ui.menu,name:knowledge.menu_document_configuration #: model:ir.ui.menu,name:document_knowledge.menu_document_configuration
msgid "Configuration" msgid "Configuration"
msgstr "設置" msgstr "設置"
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_read #: model:res.groups,name:document_knowledge.group_document_user
msgid "" #, fuzzy
"Connect Odoo with a CMIS compatible server to attach files\n" msgid "Document Knowledge user"
"to an Odoo record.\n" msgstr "知識"
"- This installs the module cmis_read."
msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_attachment_indexation
msgid ""
"Connect Odoo with a CMIS compatible server to store files.\n"
"- This installs the module cmis_write."
msgstr ""
#. module: knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Connect with an external DMS"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_attachment_indexation
msgid "" msgid ""
"Document indexation, full text search of attachements.\n" "Document indexation, full text search of attachements.\n"
"- This installs the module attachment_indexation." "- This installs the module attachment_indexation."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.knowledge_action_documents #: model:ir.actions.act_window,name:document_knowledge.knowledge_action_documents
#: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:document_knowledge.menu_document
#: model:ir.ui.menu,name:knowledge.menu_document_section #: model:ir.ui.menu,name:document_knowledge.menu_document_section
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Documents" msgid "Documents"
msgstr "文件" msgstr "文件"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model:ir.module.category,name:document_knowledge.module_category_knowledge
#, fuzzy
msgid "Documents Knowledge"
msgstr "文件"
#. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Group by" msgid "Group by"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,name:knowledge.module_category_knowledge #: model:ir.ui.menu,name:document_knowledge.menu_document_root
#: model:ir.ui.menu,name:knowledge.menu_document_root #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration
msgid "Knowledge" msgid "Knowledge"
msgstr "知識" msgstr "知識"
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.view_knowledge_configuration #: model_terms:ir.ui.view,arch_db:document_knowledge.view_knowledge_configuration
msgid "Knowledge and Documents Management" msgid "Knowledge and Documents Management"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:res.groups,name:knowledge.group_document_user #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page
#, fuzzy
msgid "Knowledge user"
msgstr "知識"
#. module: knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page
msgid "Manage document pages (Wiki)" msgid "Manage document pages (Wiki)"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.module.category,description:knowledge.module_category_knowledge #: model:ir.module.category,description:document_knowledge.module_category_knowledge
msgid "" msgid ""
"Manage documents and knowledge-related\n" "Manage documents and knowledge-related\n"
" applications\n" " applications\n"
" " " "
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_document_page_approval #: model:ir.model.fields,field_description:document_knowledge.field_res_config_settings__module_document_page_approval
msgid "Manage documents approval" msgid "Manage documents approval"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model_terms:ir.ui.view,arch_db:knowledge.ir_attachment_view_user_documents #: model_terms:ir.ui.view,arch_db:document_knowledge.ir_attachment_view_user_documents
msgid "Model" msgid "Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__module_document_page #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__module_document_page
msgid "" msgid ""
"Provide document page and category as a wiki.\n" "Provide document page and category as a wiki.\n"
"- This installs the module document_page." "- This installs the module document_page."
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_ir_attachment__res_model #: model:ir.model.fields,field_description:document_knowledge.field_ir_attachment__res_model
msgid "Resource Model" msgid "Resource Model"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: model:ir.actions.act_window,name:document_knowledge.action_knowledge_configuration
#: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration #: model:ir.ui.menu,name:document_knowledge.menu_knowledge_configuration
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#. module: knowledge #. module: document_knowledge
#: model:ir.model.fields,field_description:knowledge.field_res_config_settings__module_cmis_write #: model:ir.model.fields,help:document_knowledge.field_res_config_settings__group_ir_attachment_user
msgid "Store attachments in an external DMS instead of the Odoo Filestore"
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_ir_attachment__res_model
msgid "The database object this attachment will be attached to."
msgstr ""
#. module: knowledge
#: model:ir.model.fields,help:knowledge.field_res_config_settings__group_ir_attachment_user
msgid "" msgid ""
"When you set this field all users will be able to manage attachments " "When you set this field all users will be able to manage attachments "
"centrally, from the Knowledge/Documents menu." "centrally, from the Document Knowledge/Documents menu."
msgstr "" msgstr ""
#~ msgid "Apply" #~ msgid "Apply"

View File

@ -4,7 +4,7 @@
from odoo import fields, models from odoo import fields, models
class KnowledgeConfigSettings(models.TransientModel): class DocumentKnowledgeConfigSettings(models.TransientModel):
_inherit = "res.config.settings" _inherit = "res.config.settings"
module_attachment_indexation = fields.Boolean( module_attachment_indexation = fields.Boolean(
@ -16,8 +16,8 @@ class KnowledgeConfigSettings(models.TransientModel):
group_ir_attachment_user = fields.Boolean( group_ir_attachment_user = fields.Boolean(
string="Central access to Documents", string="Central access to Documents",
help="When you set this field all users will be able to manage " help="When you set this field all users will be able to manage "
"attachments centrally, from the Knowledge/Documents menu.", "attachments centrally, from the Document Knowledge/Documents menu.",
implied_group="knowledge.group_ir_attachment_user", implied_group="document_knowledge.group_ir_attachment_user",
) )
module_document_page = fields.Boolean( module_document_page = fields.Boolean(

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<odoo> <odoo>
<record id="group_document_user" model="res.groups"> <record id="group_document_user" model="res.groups">
<field name="name">Knowledge user</field> <field name="name">Document Knowledge user</field>
<field name="category_id" ref="module_category_knowledge" /> <field name="category_id" ref="module_category_knowledge" />
<field name="implied_ids" eval="[(4, ref('base.group_user'))]" /> <field name="implied_ids" eval="[(4, ref('base.group_user'))]" />
<field name="users" eval="[(4, ref('base.user_root'))]" /> <field name="users" eval="[(4, ref('base.user_root'))]" />

View File

@ -4,7 +4,7 @@
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" /> <meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
<title>Knowledge</title> <title>Documents Knowledge</title>
<style type="text/css"> <style type="text/css">
/* /*
@ -360,14 +360,14 @@ ul.auto-toc {
</style> </style>
</head> </head>
<body> <body>
<div class="document" id="knowledge"> <div class="document" id="documents-knowledge">
<h1 class="title">Knowledge</h1> <h1 class="title">Documents Knowledge</h1>
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !! !! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !! !! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/knowledge/tree/16.0/knowledge"><img alt="OCA/knowledge" src="https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/knowledge-16-0/knowledge-16-0-knowledge"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/118/16.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p> <p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/knowledge/tree/16.0/document_knowledge"><img alt="OCA/knowledge" src="https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/knowledge-16-0/knowledge-16-0-document_knowledge"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/118/16.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
<p>This module is the base for any knowledge and document management application.</p> <p>This module is the base for any knowledge and document management application.</p>
<p><strong>Table of contents</strong></p> <p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents"> <div class="contents local topic" id="contents">
@ -419,7 +419,7 @@ for which they have read permission.</p>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/knowledge/issues">GitHub Issues</a>. <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/knowledge/issues">GitHub Issues</a>.
In case of trouble, please check there if your issue has already been reported. In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed If you spotted it first, help us smashing it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/knowledge/issues/new?body=module:%20knowledge%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p> <a class="reference external" href="https://github.com/OCA/knowledge/issues/new?body=module:%20document_knowledge%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p> <p>Do not contact contributors directly about support or help with technical issues.</p>
</div> </div>
<div class="section" id="credits"> <div class="section" id="credits">
@ -444,6 +444,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
<li>Fayez Qandeel</li> <li>Fayez Qandeel</li>
<li>Iván Todorovich &lt;<a class="reference external" href="mailto:ivan.todorovich&#64;gmail.com">ivan.todorovich&#64;gmail.com</a>&gt;</li> <li>Iván Todorovich &lt;<a class="reference external" href="mailto:ivan.todorovich&#64;gmail.com">ivan.todorovich&#64;gmail.com</a>&gt;</li>
<li>Jordi Ballester &lt;<a class="reference external" href="mailto:jordi.ballester&#64;forgeflow.com">jordi.ballester&#64;forgeflow.com</a>&gt;</li> <li>Jordi Ballester &lt;<a class="reference external" href="mailto:jordi.ballester&#64;forgeflow.com">jordi.ballester&#64;forgeflow.com</a>&gt;</li>
<li>Marie Lejeune &lt;<a class="reference external" href="mailto:marie.lejeune&#64;acsone.eu">marie.lejeune&#64;acsone.eu</a>&gt;</li>
<li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul> <li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
<li>Vicent Cubells</li> <li>Vicent Cubells</li>
<li>Ernesto Tejeda</li> <li>Ernesto Tejeda</li>
@ -469,7 +470,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and mission is to support the collaborative development of Odoo features and
promote its widespread use.</p> promote its widespread use.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/knowledge/tree/16.0/knowledge">OCA/knowledge</a> project on GitHub.</p> <p>This module is part of the <a class="reference external" href="https://github.com/OCA/knowledge/tree/16.0/document_knowledge">OCA/knowledge</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p> <p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div> </div>
</div> </div>

View File

@ -33,14 +33,14 @@
<menuitem <menuitem
id="menu_document_root" id="menu_document_root"
name="Knowledge" name="Knowledge"
groups="knowledge.group_document_user" groups="document_knowledge.group_document_user"
web_icon="knowledge,static/description/icon.png" web_icon="document_knowledge,static/description/icon.png"
sequence="116" sequence="116"
/> />
<menuitem <menuitem
id="menu_document_section" id="menu_document_section"
name="Documents" name="Documents"
groups="knowledge.group_ir_attachment_user" groups="document_knowledge.group_ir_attachment_user"
parent="menu_document_root" parent="menu_document_root"
sequence="150" sequence="150"
/> />

View File

@ -62,7 +62,7 @@
<field name="view_id" ref="view_knowledge_configuration" /> <field name="view_id" ref="view_knowledge_configuration" />
<field name="view_mode">form</field> <field name="view_mode">form</field>
<field name="target">inline</field> <field name="target">inline</field>
<field name="context">{'module': 'knowledge'}</field> <field name="context">{'module': 'document_knowledge'}</field>
</record> </record>
<menuitem <menuitem
id="menu_document_configuration" id="menu_document_configuration"