diff --git a/project_department/README.rst b/project_department/README.rst new file mode 100644 index 0000000000..86fc1e6855 --- /dev/null +++ b/project_department/README.rst @@ -0,0 +1,96 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +================================= +Project Department Categorization +================================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:8727e585123eb8d435fff77da2a505840522927a18ab1e828273c0b4f6d690ab + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fproject-lightgray.png?logo=github + :target: https://github.com/OCA/project/tree/19.0/project_department + :alt: OCA/project +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/project-19-0/project-19-0-project_department + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/project&target_branch=19.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Add Department to Projects and task to corresponding tree, search and +form views. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Camptocamp +* Daniel Reis + +Contributors +------------ + +- Joël Grand-Guillaume +- Daniel Reis +- Yannick Vaucher +- Dave Burkholder +- Artem Kostyuk +- Vaidehi Vasani +- `Tecnativa `__ + + - Carlos Roca + +- `Binhex `__: + + - David Luis Mora + +- ``Heliconia Solutions Pvt. Ltd. ``\ \_ + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/project `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/project_department/__init__.py b/project_department/__init__.py new file mode 100644 index 0000000000..0650744f6b --- /dev/null +++ b/project_department/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/project_department/__manifest__.py b/project_department/__manifest__.py new file mode 100644 index 0000000000..897b4f743a --- /dev/null +++ b/project_department/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2014 Joël Grand-Guillaume (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Project Department Categorization", + "version": "19.0.1.0.0", + "author": "Camptocamp, Daniel Reis, Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Generic Modules/Projects & Services", + "website": "https://github.com/OCA/project", + "depends": [ + "project", + "hr", + ], + "data": ["views/project.xml"], +} diff --git a/project_department/i18n/ar.po b/project_department/i18n/ar.po new file mode 100644 index 0000000000..70dc959d92 --- /dev/null +++ b/project_department/i18n/ar.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "مهمة" diff --git a/project_department/i18n/ca.po b/project_department/i18n/ca.po new file mode 100644 index 0000000000..17bc9c2e97 --- /dev/null +++ b/project_department/i18n/ca.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Tasca" diff --git a/project_department/i18n/de.po b/project_department/i18n/de.po new file mode 100644 index 0000000000..94da1e79d9 --- /dev/null +++ b/project_department/i18n/de.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2023-03-03 09:15+0000\n" +"Last-Translator: Nils Coenen \n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Abteilung" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "Projekt" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "Projekt Abteilung" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Aufgabe" diff --git a/project_department/i18n/el.po b/project_department/i18n/el.po new file mode 100644 index 0000000000..7f12dd29b8 --- /dev/null +++ b/project_department/i18n/el.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (https://www.transifex.com/oca/teams/23907/el/)\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Εργασία" diff --git a/project_department/i18n/es.po b/project_department/i18n/es.po new file mode 100644 index 0000000000..67fbd4a574 --- /dev/null +++ b/project_department/i18n/es.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2023-09-03 13:36+0000\n" +"Last-Translator: Ivorra78 \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Departamento" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "Proyecto" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "Departamento de proyecto" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Tarea" diff --git a/project_department/i18n/es_CR.po b/project_department/i18n/es_CR.po new file mode 100644 index 0000000000..925249ba87 --- /dev/null +++ b/project_department/i18n/es_CR.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Tarea" diff --git a/project_department/i18n/es_MX.po b/project_department/i18n/es_MX.po new file mode 100644 index 0000000000..439c75a463 --- /dev/null +++ b/project_department/i18n/es_MX.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Tarea" diff --git a/project_department/i18n/es_VE.po b/project_department/i18n/es_VE.po new file mode 100644 index 0000000000..ba3882e295 --- /dev/null +++ b/project_department/i18n/es_VE.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Tarea" diff --git a/project_department/i18n/fi.po b/project_department/i18n/fi.po new file mode 100644 index 0000000000..894384b5bd --- /dev/null +++ b/project_department/i18n/fi.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Tehtävä" diff --git a/project_department/i18n/fr.po b/project_department/i18n/fr.po new file mode 100644 index 0000000000..5e0477bd14 --- /dev/null +++ b/project_department/i18n/fr.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2018-06-18 09:34+0000\n" +"Last-Translator: c2cdidier \n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.0.1\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Département" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "Département du projet" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Tâche" diff --git a/project_department/i18n/gl.po b/project_department/i18n/gl.po new file mode 100644 index 0000000000..157d17d3cf --- /dev/null +++ b/project_department/i18n/gl.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Tarefa" diff --git a/project_department/i18n/hr.po b/project_department/i18n/hr.po new file mode 100644 index 0000000000..8c8399560a --- /dev/null +++ b/project_department/i18n/hr.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-06 02:45+0000\n" +"PO-Revision-Date: 2023-02-15 17:23+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Odjel" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "Projekt" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "Projektni odjel" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Zadatak" diff --git a/project_department/i18n/hr_HR.po b/project_department/i18n/hr_HR.po new file mode 100644 index 0000000000..a5f7e61d75 --- /dev/null +++ b/project_department/i18n/hr_HR.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Zadatak" diff --git a/project_department/i18n/hu.po b/project_department/i18n/hu.po new file mode 100644 index 0000000000..f8f3674eb5 --- /dev/null +++ b/project_department/i18n/hu.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Feladat" diff --git a/project_department/i18n/it.po b/project_department/i18n/it.po new file mode 100644 index 0000000000..84c7943756 --- /dev/null +++ b/project_department/i18n/it.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2023-04-17 23:00+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Reparto" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "Progetto" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "Reparto progetto" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Lavoro" diff --git a/project_department/i18n/ja.po b/project_department/i18n/ja.po new file mode 100644 index 0000000000..ccc0d19d26 --- /dev/null +++ b/project_department/i18n/ja.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "タスク" diff --git a/project_department/i18n/lt.po b/project_department/i18n/lt.po new file mode 100644 index 0000000000..520b8ec0ba --- /dev/null +++ b/project_department/i18n/lt.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Užduotis" diff --git a/project_department/i18n/lv.po b/project_department/i18n/lv.po new file mode 100644 index 0000000000..7b47b02204 --- /dev/null +++ b/project_department/i18n/lv.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Uzdevums" diff --git a/project_department/i18n/mk.po b/project_department/i18n/mk.po new file mode 100644 index 0000000000..3f892718ad --- /dev/null +++ b/project_department/i18n/mk.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Задача" diff --git a/project_department/i18n/mn.po b/project_department/i18n/mn.po new file mode 100644 index 0000000000..0e8b7e681c --- /dev/null +++ b/project_department/i18n/mn.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Даалгавар" diff --git a/project_department/i18n/nl.po b/project_department/i18n/nl.po new file mode 100644 index 0000000000..55c93820f6 --- /dev/null +++ b/project_department/i18n/nl.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Taak" diff --git a/project_department/i18n/nl_NL.po b/project_department/i18n/nl_NL.po new file mode 100644 index 0000000000..99c610f658 --- /dev/null +++ b/project_department/i18n/nl_NL.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Afdeling" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "Projectafdeling" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Taak" diff --git a/project_department/i18n/pl.po b/project_department/i18n/pl.po new file mode 100644 index 0000000000..b35b00828b --- /dev/null +++ b/project_department/i18n/pl.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " +"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Zadanie" diff --git a/project_department/i18n/project_department.pot b/project_department/i18n/project_department.pot new file mode 100644 index 0000000000..6b155a5c5b --- /dev/null +++ b/project_department/i18n/project_department.pot @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.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: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "" diff --git a/project_department/i18n/pt.po b/project_department/i18n/pt.po new file mode 100644 index 0000000000..b8c522dae7 --- /dev/null +++ b/project_department/i18n/pt.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Tarefa" diff --git a/project_department/i18n/pt_BR.po b/project_department/i18n/pt_BR.po new file mode 100644 index 0000000000..29aa76dce4 --- /dev/null +++ b/project_department/i18n/pt_BR.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2023-07-30 14:10+0000\n" +"Last-Translator: Adriano Prado \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Departamento" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "Projeto" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "Departamento de Projeto" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Tarefa" diff --git a/project_department/i18n/pt_PT.po b/project_department/i18n/pt_PT.po new file mode 100644 index 0000000000..87c137b56d --- /dev/null +++ b/project_department/i18n/pt_PT.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2018-09-23 22:21+0000\n" +"Last-Translator: Daniel Reis \n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.1.1\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Departamento" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "Departamento do Projeto" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Tarefa" diff --git a/project_department/i18n/ro.po b/project_department/i18n/ro.po new file mode 100644 index 0000000000..146bc1bdbd --- /dev/null +++ b/project_department/i18n/ro.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Sarcina" diff --git a/project_department/i18n/sl.po b/project_department/i18n/sl.po new file mode 100644 index 0000000000..54bebce924 --- /dev/null +++ b/project_department/i18n/sl.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2019-07-24 18:43+0000\n" +"Last-Translator: Matjaz Mozetic \n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 3.7.1\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Oddelek" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "Projektni oddelek" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Opravilo" diff --git a/project_department/i18n/sv.po b/project_department/i18n/sv.po new file mode 100644 index 0000000000..d4b46b271b --- /dev/null +++ b/project_department/i18n/sv.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2024-02-23 13:33+0000\n" +"Last-Translator: jakobkrabbe \n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Avdelning" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "Projekt" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "Projektavdelning" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Uppgift" diff --git a/project_department/i18n/tr.po b/project_department/i18n/tr.po new file mode 100644 index 0000000000..bec0365421 --- /dev/null +++ b/project_department/i18n/tr.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Görev" diff --git a/project_department/i18n/uk.po b/project_department/i18n/uk.po new file mode 100644 index 0000000000..0a17e93f67 --- /dev/null +++ b/project_department/i18n/uk.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "Завдання" diff --git a/project_department/i18n/zh_CN.po b/project_department/i18n/zh_CN.po new file mode 100644 index 0000000000..736371d02d --- /dev/null +++ b/project_department/i18n/zh_CN.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-17 02:52+0000\n" +"PO-Revision-Date: 2017-06-17 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: project_department +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_project +msgid "Project" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_project__department_id +#: model:ir.model.fields,field_description:project_department.field_project_task__project_department_id +#: model_terms:ir.ui.view,arch_db:project_department.view_task_search_form +msgid "Project Department" +msgstr "" + +#. module: project_department +#: model:ir.model,name:project_department.model_project_task +msgid "Task" +msgstr "任务" diff --git a/project_department/models/__init__.py b/project_department/models/__init__.py new file mode 100644 index 0000000000..351a3ad34b --- /dev/null +++ b/project_department/models/__init__.py @@ -0,0 +1 @@ +from . import project diff --git a/project_department/models/project.py b/project_department/models/project.py new file mode 100644 index 0000000000..570ba644f5 --- /dev/null +++ b/project_department/models/project.py @@ -0,0 +1,21 @@ +# © 2014 Joël Grand-Guillaume (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo import fields, models + + +class ProjectTask(models.Model): + _inherit = "project.task" + + project_department_id = fields.Many2one( + related="project_id.department_id", + string="Project Department", + store=True, + ) + + +class ProjectProject(models.Model): + _inherit = "project.project" + + department_id = fields.Many2one( + comodel_name="hr.department", string="Project Department" + ) diff --git a/project_department/pyproject.toml b/project_department/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/project_department/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/project_department/readme/CONTRIBUTORS.md b/project_department/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..d56eabc95f --- /dev/null +++ b/project_department/readme/CONTRIBUTORS.md @@ -0,0 +1,11 @@ +- Joël Grand-Guillaume \<\> +- Daniel Reis \<\> +- Yannick Vaucher \<\> +- Dave Burkholder \<\> +- Artem Kostyuk \<\> +- Vaidehi Vasani \<\> +- [Tecnativa](https://www.tecnativa.com) + - Carlos Roca +- [Binhex](https://binhex.cloud//com): + - David Luis Mora \<\> +- `Heliconia Solutions Pvt. Ltd. `_ diff --git a/project_department/readme/DESCRIPTION.md b/project_department/readme/DESCRIPTION.md new file mode 100644 index 0000000000..a960cf250e --- /dev/null +++ b/project_department/readme/DESCRIPTION.md @@ -0,0 +1,2 @@ +Add Department to Projects and task to corresponding tree, search and +form views. diff --git a/project_department/static/description/icon.png b/project_department/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/project_department/static/description/icon.png differ diff --git a/project_department/static/description/index.html b/project_department/static/description/index.html new file mode 100644 index 0000000000..62c394cb7a --- /dev/null +++ b/project_department/static/description/index.html @@ -0,0 +1,445 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

Project Department Categorization

+ +

Beta License: AGPL-3 OCA/project Translate me on Weblate Try me on Runboat

+

Add Department to Projects and task to corresponding tree, search and +form views.

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Camptocamp
  • +
  • Daniel Reis
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/project project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+
+ + diff --git a/project_department/views/project.xml b/project_department/views/project.xml new file mode 100644 index 0000000000..17b2e39e5e --- /dev/null +++ b/project_department/views/project.xml @@ -0,0 +1,86 @@ + + + project.project.form + project.project + + form + + + + + + + + + project.project.select + project.project + + search + + + + + + + + + + + + project.project.list + project.project + + list + + + + + + + + + project.task.search.form + project.task + + + + + + + + + + + + + project.task.department.form + project.task + + + + + + + + + + + project.task.department.tree + project.task + + + + + + + + +