From cc9ef9138d76424cd35d3b1f8e414776028d2349 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Grand-Guillaume?= Date: Fri, 12 Aug 2011 14:53:16 +0200 Subject: [PATCH 01/44] [ADD] Commit of the modules used by C2C to move in our new public branch (lp:c2c-addons/6.1 rev 2) --- project_department/__init__.py | 32 +++++++++++ project_department/__openerp__.py | 56 +++++++++++++++++++ project_department/project.py | 33 +++++++++++ project_department/project_view.xml | 87 +++++++++++++++++++++++++++++ 4 files changed, 208 insertions(+) create mode 100644 project_department/__init__.py create mode 100644 project_department/__openerp__.py create mode 100644 project_department/project.py create mode 100644 project_department/project_view.xml diff --git a/project_department/__init__.py b/project_department/__init__.py new file mode 100644 index 0000000000..dd75686a74 --- /dev/null +++ b/project_department/__init__.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Copyright (c) 2011 Camptocamp SA (http://www.camptocamp.com) +# All Right Reserved +# +# Author : Joel Grand-guillaume (Camptocamp) +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################################################## + +import project diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py new file mode 100644 index 0000000000..dd874663c0 --- /dev/null +++ b/project_department/__openerp__.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Copyright (c) 2011 Camptocamp SA (http://www.camptocamp.com) +# All Right Reserved +# +# Author : Joel Grand-guillaume (Camptocamp) +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################################################## + +{ + "name" : "Project and Timesheet Department Categorization", + "version" : "1.0", + "author" : "Camptocamp", + "category" : "Generic Modules/Projects & Services", + "description": +""" + Add the department on Project and Timesheet (hr.analytic.timesheet) as well as the related filter and button in the search form of + both object. + +""", + "website": "http://camptocamp.com", + "depends" : [ + "hr_timesheet", + "project", + "analytic_department", + ], + "init_xml" : [], + "demo_xml" : [], + "update_xml" : [ + "project_view.xml", + ], + "active": False, + "installable": True +} diff --git a/project_department/project.py b/project_department/project.py new file mode 100644 index 0000000000..123b46acfe --- /dev/null +++ b/project_department/project.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Copyright (c) 2010 Camptocamp SA (http://www.camptocamp.com) +# All Right Reserved +# +# Author : Joel Grand-guillaume (Camptocamp) +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################################################## + +from osv import osv +from osv import fields diff --git a/project_department/project_view.xml b/project_department/project_view.xml new file mode 100644 index 0000000000..4c80573842 --- /dev/null +++ b/project_department/project_view.xml @@ -0,0 +1,87 @@ + + + + + project.project.form + project.project + + form + + + + + + + + + project.project.select + project.project + + search + + + + + + + + + + + + project.project.tree + project.project + + tree + child_ids + + + + + + + + + + hr.analytic.timesheet.tree + hr.analytic.timesheet + tree + + + + + + + + + hr.analytic.timesheet.form + hr.analytic.timesheet + form + + + + + + + + + + hr.analytic.timesheet.search + hr.analytic.timesheet + search + + + + + + + + + + + + + + + + \ No newline at end of file From 6aa64276625551afc796f5ba498518539b4b3a0a Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Fri, 4 Jan 2013 11:32:58 +0100 Subject: [PATCH 02/44] [MIGR] set installable to False on all the modules, the flag has to be reactivated when the modules are migrated --- project_department/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py index dd874663c0..0e30ba606a 100644 --- a/project_department/__openerp__.py +++ b/project_department/__openerp__.py @@ -52,5 +52,5 @@ "project_view.xml", ], "active": False, - "installable": True + 'installable': False } From dc17d726ffd1a19ecb138b63651ecd258c55d657 Mon Sep 17 00:00:00 2001 From: Daniel Reis Date: Thu, 28 Feb 2013 12:24:19 +0000 Subject: [PATCH 03/44] [CHG] Migrating to v7. Timesheet features were split into a separate module. --- project_department/LICENSE | 18 ++++++++ project_department/__init__.py | 33 +------------- project_department/__openerp__.py | 61 +++++-------------------- project_department/project_view.xml | 69 ++++++----------------------- 4 files changed, 43 insertions(+), 138 deletions(-) create mode 100644 project_department/LICENSE diff --git a/project_department/LICENSE b/project_department/LICENSE new file mode 100644 index 0000000000..cdc3367da2 --- /dev/null +++ b/project_department/LICENSE @@ -0,0 +1,18 @@ +OpenERP, Open Source Management Solution + +Original author: Joël Grand-Guillaume +Copyright © 2011 Camptocamp SA (http://www.camptocamp.com) +Copyright © 2013 Daniel Reis (SECURITAS) + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3 of the +License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public Lice +along with this program. If not, see . diff --git a/project_department/__init__.py b/project_department/__init__.py index dd75686a74..ea30561d83 100644 --- a/project_department/__init__.py +++ b/project_department/__init__.py @@ -1,32 +1 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2011 Camptocamp SA (http://www.camptocamp.com) -# All Right Reserved -# -# Author : Joel Grand-guillaume (Camptocamp) -# -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsability of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# garantees and support are strongly adviced to contract a Free Software -# Service Company -# -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -############################################################################## - -import project +#empty diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py index 0e30ba606a..3b55956f78 100644 --- a/project_department/__openerp__.py +++ b/project_department/__openerp__.py @@ -1,56 +1,15 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2011 Camptocamp SA (http://www.camptocamp.com) -# All Right Reserved -# -# Author : Joel Grand-guillaume (Camptocamp) -# -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsability of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# garantees and support are strongly adviced to contract a Free Software -# Service Company -# -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -############################################################################## - { - "name" : "Project and Timesheet Department Categorization", - "version" : "1.0", - "author" : "Camptocamp", - "category" : "Generic Modules/Projects & Services", - "description": -""" - Add the department on Project and Timesheet (hr.analytic.timesheet) as well as the related filter and button in the search form of - both object. - + "name": "Project Department Categorization", + "version": "1.0", + "author": "Camptocamp, Daniel Reis", + "license": "AGPL-3", + "category": "Generic Modules/Projects & Services", + "description": """\ +Add Department to Projects and to corresponding tree, search and form views. """, "website": "http://camptocamp.com", - "depends" : [ - "hr_timesheet", - "project", - "analytic_department", - ], - "init_xml" : [], - "demo_xml" : [], - "update_xml" : [ - "project_view.xml", - ], - "active": False, - 'installable': False + "depends": ["project", "analytic_department"], + "data": ["project_view.xml"], + "auto_install": True, } diff --git a/project_department/project_view.xml b/project_department/project_view.xml index 4c80573842..6dc6781e3f 100644 --- a/project_department/project_view.xml +++ b/project_department/project_view.xml @@ -4,24 +4,24 @@ project.project.form project.project - + form - - - + + + project.project.select project.project - + search - - - + + + @@ -31,57 +31,16 @@ project.project.tree project.project - + tree child_ids - - - - - - - - - hr.analytic.timesheet.tree - hr.analytic.timesheet - tree - - - - - - - - - hr.analytic.timesheet.form - hr.analytic.timesheet - form - - - - - - - - - - hr.analytic.timesheet.search - hr.analytic.timesheet - search - - - - - - - - + + + - - - - \ No newline at end of file + + From ea06303ce637a7ab2ab6eb8e698e13232fdd93ff Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Thu, 2 May 2013 10:52:39 +0200 Subject: [PATCH 04/44] [REM] project_department - useless project.py file --- project_department/project.py | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 project_department/project.py diff --git a/project_department/project.py b/project_department/project.py deleted file mode 100644 index 123b46acfe..0000000000 --- a/project_department/project.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2010 Camptocamp SA (http://www.camptocamp.com) -# All Right Reserved -# -# Author : Joel Grand-guillaume (Camptocamp) -# -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsability of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# garantees and support are strongly adviced to contract a Free Software -# Service Company -# -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -############################################################################## - -from osv import osv -from osv import fields From cd90bca251bd1e5e73e9ff4b97ae49a38cfee525 Mon Sep 17 00:00:00 2001 From: Joel Grand-Guillaume Date: Thu, 24 Apr 2014 16:49:11 +0200 Subject: [PATCH 05/44] [IMP] Add departement on project tasks --- project_department/__init__.py | 2 +- project_department/__openerp__.py | 2 +- project_department/project.py | 39 ++++++++++++++++++++++++++++ project_department/project_view.xml | 40 +++++++++++++++++++++++++++++ 4 files changed, 81 insertions(+), 2 deletions(-) create mode 100644 project_department/project.py diff --git a/project_department/__init__.py b/project_department/__init__.py index ea30561d83..7095229cc9 100644 --- a/project_department/__init__.py +++ b/project_department/__init__.py @@ -1 +1 @@ -#empty +from . import project \ No newline at end of file diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py index 3b55956f78..20fbf221bf 100644 --- a/project_department/__openerp__.py +++ b/project_department/__openerp__.py @@ -6,7 +6,7 @@ "license": "AGPL-3", "category": "Generic Modules/Projects & Services", "description": """\ -Add Department to Projects and to corresponding tree, search and form views. +Add Department to Projects and task to corresponding tree, search and form views. """, "website": "http://camptocamp.com", "depends": ["project", "analytic_department"], diff --git a/project_department/project.py b/project_department/project.py new file mode 100644 index 0000000000..7e3e8ecefe --- /dev/null +++ b/project_department/project.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Copyright (C) 2014 Camptocamp +# Author Joel Grand-Guillaume +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import fields, orm + + +class ProjectTask(orm.Model): + + _inherit = 'project.task' + _columns = { + 'department_id': fields.related( + 'project_id', + 'department_id', + type='many2one', + relation='hr.department', + string='Department', + store=True, + readonly=True), + } + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/project_department/project_view.xml b/project_department/project_view.xml index 6dc6781e3f..9d3abc070e 100644 --- a/project_department/project_view.xml +++ b/project_department/project_view.xml @@ -41,6 +41,46 @@ + + project.task.search.form + project.task + + + + + + + + + + + + + + project.task.departement.form + project.task + + + + + + + + + + + project.task.department.tree + project.task + + + + + + + + + + From 5dc9cf85ed0ba610a2dc53f8f8c8e61ee8f303fd Mon Sep 17 00:00:00 2001 From: Joel Grand-Guillaume Date: Mon, 28 Apr 2014 12:38:53 +0200 Subject: [PATCH 06/44] [IMP] Change Department for Project Department in tasks. --- project_department/project.py | 4 ++-- project_department/project_view.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/project_department/project.py b/project_department/project.py index 7e3e8ecefe..3f7df61f49 100644 --- a/project_department/project.py +++ b/project_department/project.py @@ -26,12 +26,12 @@ class ProjectTask(orm.Model): _inherit = 'project.task' _columns = { - 'department_id': fields.related( + 'project_department_id': fields.related( 'project_id', 'department_id', type='many2one', relation='hr.department', - string='Department', + string='Project Department', store=True, readonly=True), } diff --git a/project_department/project_view.xml b/project_department/project_view.xml index 9d3abc070e..4e96b7b8c1 100644 --- a/project_department/project_view.xml +++ b/project_department/project_view.xml @@ -47,10 +47,10 @@ - + - + @@ -63,7 +63,7 @@ - + @@ -75,7 +75,7 @@ - + From a25a8fc8bfd7b0096f266637ade2efa9740769aa Mon Sep 17 00:00:00 2001 From: Daniel Reis Date: Tue, 1 Jul 2014 09:26:15 +0100 Subject: [PATCH 07/44] Set modules as not installable --- project_department/__openerp__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py index 20fbf221bf..d50814ab2c 100644 --- a/project_department/__openerp__.py +++ b/project_department/__openerp__.py @@ -12,4 +12,5 @@ "depends": ["project", "analytic_department"], "data": ["project_view.xml"], "auto_install": True, + "installable": False, } From 798a61d29f104eaff3e507e678572f8204e6b0ed Mon Sep 17 00:00:00 2001 From: Daniel Reis Date: Wed, 2 Jul 2014 15:23:15 +0100 Subject: [PATCH 08/44] Port project_department to v8 --- project_department/__init__.py | 2 +- project_department/__openerp__.py | 5 +++-- project_department/project.py | 16 ++++++++-------- project_department/project_view.xml | 3 +-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/project_department/__init__.py b/project_department/__init__.py index 7095229cc9..351a3ad34b 100644 --- a/project_department/__init__.py +++ b/project_department/__init__.py @@ -1 +1 @@ -from . import project \ No newline at end of file +from . import project diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py index d50814ab2c..855878cd01 100644 --- a/project_department/__openerp__.py +++ b/project_department/__openerp__.py @@ -6,11 +6,12 @@ "license": "AGPL-3", "category": "Generic Modules/Projects & Services", "description": """\ -Add Department to Projects and task to corresponding tree, search and form views. +Add Department to Projects and task to corresponding tree, search and form +views. """, "website": "http://camptocamp.com", "depends": ["project", "analytic_department"], "data": ["project_view.xml"], "auto_install": True, - "installable": False, + "installable": True, } diff --git a/project_department/project.py b/project_department/project.py index 3f7df61f49..cd3ff1b485 100644 --- a/project_department/project.py +++ b/project_department/project.py @@ -23,17 +23,17 @@ class ProjectTask(orm.Model): - + _inherit = 'project.task' _columns = { 'project_department_id': fields.related( - 'project_id', - 'department_id', - type='many2one', - relation='hr.department', - string='Project Department', - store=True, - readonly=True), + 'project_id', + 'department_id', + type='many2one', + relation='hr.department', + string='Project Department', + store=True, + readonly=True), } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/project_department/project_view.xml b/project_department/project_view.xml index 4e96b7b8c1..cc5902236f 100644 --- a/project_department/project_view.xml +++ b/project_department/project_view.xml @@ -1,6 +1,6 @@ - + project.project.form project.project @@ -83,4 +83,3 @@ - From c86179eca2497497368769a8d9c233cbe3217235 Mon Sep 17 00:00:00 2001 From: Daniel Reis Date: Wed, 2 Jul 2014 16:14:35 +0100 Subject: [PATCH 09/44] Adjust where the analytic's Department shows --- project_department/project_view.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project_department/project_view.xml b/project_department/project_view.xml index cc5902236f..cd7e953ef0 100644 --- a/project_department/project_view.xml +++ b/project_department/project_view.xml @@ -7,7 +7,7 @@ form - + @@ -62,7 +62,7 @@ - + From 002746a5b1db48dd2e0d305d0c44ee9cf1941f9f Mon Sep 17 00:00:00 2001 From: Daniel Reis Date: Mon, 1 Sep 2014 18:05:34 +0100 Subject: [PATCH 10/44] Fix view errors after upstream changes --- project_department/project_view.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project_department/project_view.xml b/project_department/project_view.xml index cd7e953ef0..3ab144382e 100644 --- a/project_department/project_view.xml +++ b/project_department/project_view.xml @@ -49,8 +49,8 @@ - - + + From 56ec92b624860e06224160e6465469388f608caf Mon Sep 17 00:00:00 2001 From: Daniel Reis Date: Tue, 22 Jul 2014 10:45:02 +0100 Subject: [PATCH 11/44] Split analytic_department into analytic_base_department to isolate dependency on account --- project_department/__openerp__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py index 855878cd01..82f1aa4766 100644 --- a/project_department/__openerp__.py +++ b/project_department/__openerp__.py @@ -10,7 +10,10 @@ views. """, "website": "http://camptocamp.com", - "depends": ["project", "analytic_department"], + "depends": [ + "analytic_base_department", + "project", + ], "data": ["project_view.xml"], "auto_install": True, "installable": True, From ad1f093119f8f786eeeb118bbec09a99a2fd4d1b Mon Sep 17 00:00:00 2001 From: Alexandre Fayolle Date: Mon, 2 Mar 2015 17:24:32 +0100 Subject: [PATCH 12/44] Add OCA as author of OCA addons In order to get visibility on https://www.odoo.com/apps the OCA board has decided to add the OCA as author of all the addons maintained as part of the association. --- project_department/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py index 82f1aa4766..d24e268c18 100644 --- a/project_department/__openerp__.py +++ b/project_department/__openerp__.py @@ -2,7 +2,7 @@ { "name": "Project Department Categorization", "version": "1.0", - "author": "Camptocamp, Daniel Reis", + "author": "Camptocamp, Daniel Reis,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Generic Modules/Projects & Services", "description": """\ From adc0619e3c59f12e3c604131662c400cf772aad4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Fri, 9 Oct 2015 10:00:07 +0200 Subject: [PATCH 13/44] [UPD] prefix versions with 8.0 --- project_department/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py index d24e268c18..7de16f7eaf 100644 --- a/project_department/__openerp__.py +++ b/project_department/__openerp__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- { "name": "Project Department Categorization", - "version": "1.0", + "version": "8.0.1.0.0", "author": "Camptocamp, Daniel Reis,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Generic Modules/Projects & Services", From 01eb44198e7711bea09b05ae07e0b9298335a423 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 14 Oct 2015 03:13:04 +0200 Subject: [PATCH 14/44] [MIG] Make modules uninstallable --- project_department/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py index 7de16f7eaf..5e49b5b7d7 100644 --- a/project_department/__openerp__.py +++ b/project_department/__openerp__.py @@ -16,5 +16,5 @@ ], "data": ["project_view.xml"], "auto_install": True, - "installable": True, + 'installable': False, } From 89188be13e7297e5f49457be8891bc8e99e676e8 Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Thu, 28 Jan 2016 17:25:48 +0100 Subject: [PATCH 15/44] [PORT][9.0] project_department --- project_department/__init__.py | 2 +- project_department/__openerp__.py | 8 ++-- project_department/models/__init__.py | 1 + project_department/models/project.py | 16 ++++++++ project_department/project.py | 39 ------------------- .../{project_view.xml => views/project.xml} | 4 +- 6 files changed, 25 insertions(+), 45 deletions(-) create mode 100644 project_department/models/__init__.py create mode 100644 project_department/models/project.py delete mode 100644 project_department/project.py rename project_department/{project_view.xml => views/project.xml} (95%) diff --git a/project_department/__init__.py b/project_department/__init__.py index 351a3ad34b..0650744f6b 100644 --- a/project_department/__init__.py +++ b/project_department/__init__.py @@ -1 +1 @@ -from . import project +from . import models diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py index 5e49b5b7d7..684599bbc5 100644 --- a/project_department/__openerp__.py +++ b/project_department/__openerp__.py @@ -1,7 +1,9 @@ # -*- coding: utf-8 -*- +# © 2014 Joël Grand-Guillaume (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Project Department Categorization", - "version": "8.0.1.0.0", + "version": "9.0.1.0.0", "author": "Camptocamp, Daniel Reis,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Generic Modules/Projects & Services", @@ -14,7 +16,7 @@ "analytic_base_department", "project", ], - "data": ["project_view.xml"], + "data": ["views/project.xml"], "auto_install": True, - 'installable': False, + 'installable': True, } 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..37532e4679 --- /dev/null +++ b/project_department/models/project.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +# -*- coding: utf-8 -*- +# © 2014 Joël Grand-Guillaume (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp import fields, models + + +class ProjectTask(models.Model): + _inherit = 'project.task' + + project_department_id = fields.Many2one( + related='project_id.department_id', + comodel_name='hr.department', + string='Project Department', + store=True, + readonly=True) diff --git a/project_department/project.py b/project_department/project.py deleted file mode 100644 index cd3ff1b485..0000000000 --- a/project_department/project.py +++ /dev/null @@ -1,39 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2014 Camptocamp -# Author Joel Grand-Guillaume -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -from openerp.osv import fields, orm - - -class ProjectTask(orm.Model): - - _inherit = 'project.task' - _columns = { - 'project_department_id': fields.related( - 'project_id', - 'department_id', - type='many2one', - relation='hr.department', - string='Project Department', - store=True, - readonly=True), - } - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/project_department/project_view.xml b/project_department/views/project.xml similarity index 95% rename from project_department/project_view.xml rename to project_department/views/project.xml index 3ab144382e..4dfd629a58 100644 --- a/project_department/project_view.xml +++ b/project_department/views/project.xml @@ -7,7 +7,7 @@ form - + @@ -22,7 +22,7 @@ - + From 648feec553425d2f6a33f03d788d65cb49565033 Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Fri, 24 Mar 2017 16:59:13 +0100 Subject: [PATCH 16/44] Move description in README.rst --- project_department/README.rst | 58 +++++++++++++++++++++++++++++++ project_department/__openerp__.py | 6 +--- 2 files changed, 59 insertions(+), 5 deletions(-) create mode 100644 project_department/README.rst diff --git a/project_department/README.rst b/project_department/README.rst new file mode 100644 index 0000000000..f3232d50b8 --- /dev/null +++ b/project_department/README.rst @@ -0,0 +1,58 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +================================== +Project Departement Categorization +================================== + +Add Department to Projects and task to corresponding tree, search and form +views. + + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/140/project + + +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 smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Joël Grand-Guillaume +* Daniel Reis +* Yannick Vaucher + + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/project_department/__openerp__.py b/project_department/__openerp__.py index 684599bbc5..43bbde8534 100644 --- a/project_department/__openerp__.py +++ b/project_department/__openerp__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# © 2014 Joël Grand-Guillaume (Camptocamp) +# Copyright 2014 Joël Grand-Guillaume (Camptocamp) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Project Department Categorization", @@ -7,10 +7,6 @@ "author": "Camptocamp, Daniel Reis,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Generic Modules/Projects & Services", - "description": """\ -Add Department to Projects and task to corresponding tree, search and form -views. -""", "website": "http://camptocamp.com", "depends": [ "analytic_base_department", From 5e3ad50f556610c16906d52d32eca81ac0a0ada8 Mon Sep 17 00:00:00 2001 From: Dave Burkholder Date: Mon, 17 Apr 2017 17:14:33 -0400 Subject: [PATCH 17/44] 10.0 mig project_department --- project_department/README.rst | 1 + .../{__openerp__.py => __manifest__.py} | 2 +- project_department/models/project.py | 2 +- project_department/views/project.xml | 144 +++++++++--------- 4 files changed, 74 insertions(+), 75 deletions(-) rename project_department/{__openerp__.py => __manifest__.py} (95%) diff --git a/project_department/README.rst b/project_department/README.rst index f3232d50b8..116dfcd69e 100644 --- a/project_department/README.rst +++ b/project_department/README.rst @@ -40,6 +40,7 @@ Contributors * Joël Grand-Guillaume * Daniel Reis * Yannick Vaucher +* Dave Burkholder Maintainer diff --git a/project_department/__openerp__.py b/project_department/__manifest__.py similarity index 95% rename from project_department/__openerp__.py rename to project_department/__manifest__.py index 43bbde8534..d380878667 100644 --- a/project_department/__openerp__.py +++ b/project_department/__manifest__.py @@ -3,7 +3,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Project Department Categorization", - "version": "9.0.1.0.0", + "version": "10.0.1.0.0", "author": "Camptocamp, Daniel Reis,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Generic Modules/Projects & Services", diff --git a/project_department/models/project.py b/project_department/models/project.py index 37532e4679..ae74c818f9 100644 --- a/project_department/models/project.py +++ b/project_department/models/project.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # © 2014 Joël Grand-Guillaume (Camptocamp) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import fields, models +from odoo import fields, models class ProjectTask(models.Model): diff --git a/project_department/views/project.xml b/project_department/views/project.xml index 4dfd629a58..20771c9a84 100644 --- a/project_department/views/project.xml +++ b/project_department/views/project.xml @@ -1,85 +1,83 @@ - - + - - project.project.form - project.project - - form - - - - + + project.project.form + project.project + + form + + + - + + - - project.project.select - project.project - - search - - - - - - - - - - - - project.project.tree - project.project - - tree - child_ids - - - - - - + + project.project.select + project.project + + search + + + + + + + + + - - project.task.search.form - project.task - - - - + + project.project.tree + project.project + + tree + child_ids + + + - - - - - + + + + + project.task.search.form + project.task + + + + + + + + + + - - project.task.departement.form - project.task - - - - - - + + project.task.departement.form + project.task + + + + + - + + - - project.task.department.tree - project.task - - - - - - + + project.task.department.tree + project.task + + + + + - + + - - + From b009826cd783ac93b006af97ab33682f4de2e6f7 Mon Sep 17 00:00:00 2001 From: Dave Burkholder Date: Thu, 15 Jun 2017 08:24:53 -0400 Subject: [PATCH 18/44] Updates per @lreficent comments --- project_department/README.rst | 2 +- project_department/__init__.py | 1 + project_department/models/__init__.py | 1 + project_department/models/project.py | 1 - 4 files changed, 3 insertions(+), 2 deletions(-) diff --git a/project_department/README.rst b/project_department/README.rst index 116dfcd69e..e5d95c19c9 100644 --- a/project_department/README.rst +++ b/project_department/README.rst @@ -38,7 +38,7 @@ Contributors ------------ * Joël Grand-Guillaume -* Daniel Reis +* Daniel Reis * Yannick Vaucher * Dave Burkholder diff --git a/project_department/__init__.py b/project_department/__init__.py index 0650744f6b..a0fdc10fe1 100644 --- a/project_department/__init__.py +++ b/project_department/__init__.py @@ -1 +1,2 @@ +# -*- coding: utf-8 -*- from . import models diff --git a/project_department/models/__init__.py b/project_department/models/__init__.py index 351a3ad34b..fd49e08c0b 100644 --- a/project_department/models/__init__.py +++ b/project_department/models/__init__.py @@ -1 +1,2 @@ +# -*- coding: utf-8 -*- from . import project diff --git a/project_department/models/project.py b/project_department/models/project.py index ae74c818f9..edcb2c3342 100644 --- a/project_department/models/project.py +++ b/project_department/models/project.py @@ -1,5 +1,4 @@ # -*- coding: utf-8 -*- -# -*- coding: utf-8 -*- # © 2014 Joël Grand-Guillaume (Camptocamp) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import fields, models From 011161ef2427dabd8e80e14070027fd78ca4ff4e Mon Sep 17 00:00:00 2001 From: Daniel Reis Date: Fri, 16 Jun 2017 09:27:36 +0100 Subject: [PATCH 19/44] Fix runbot link --- project_department/README.rst | 2 +- project_department/i18n/ar.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/ca.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/de.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/el.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/es.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/es_CR.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/es_MX.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/es_VE.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/fi.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/fr.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/gl.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/hr.po | 36 ++++++++++++++++++++++++++++++++ project_department/i18n/hr_HR.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/hu.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/it.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/ja.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/lt.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/lv.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/mk.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/mn.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/nl.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/nl_NL.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/pl.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/pt.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/pt_BR.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/pt_PT.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/ro.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/sl.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/sv.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/tr.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/uk.po | 35 +++++++++++++++++++++++++++++++ project_department/i18n/zh_CN.po | 35 +++++++++++++++++++++++++++++++ 33 files changed, 1122 insertions(+), 1 deletion(-) create mode 100644 project_department/i18n/ar.po create mode 100644 project_department/i18n/ca.po create mode 100644 project_department/i18n/de.po create mode 100644 project_department/i18n/el.po create mode 100644 project_department/i18n/es.po create mode 100644 project_department/i18n/es_CR.po create mode 100644 project_department/i18n/es_MX.po create mode 100644 project_department/i18n/es_VE.po create mode 100644 project_department/i18n/fi.po create mode 100644 project_department/i18n/fr.po create mode 100644 project_department/i18n/gl.po create mode 100644 project_department/i18n/hr.po create mode 100644 project_department/i18n/hr_HR.po create mode 100644 project_department/i18n/hu.po create mode 100644 project_department/i18n/it.po create mode 100644 project_department/i18n/ja.po create mode 100644 project_department/i18n/lt.po create mode 100644 project_department/i18n/lv.po create mode 100644 project_department/i18n/mk.po create mode 100644 project_department/i18n/mn.po create mode 100644 project_department/i18n/nl.po create mode 100644 project_department/i18n/nl_NL.po create mode 100644 project_department/i18n/pl.po create mode 100644 project_department/i18n/pt.po create mode 100644 project_department/i18n/pt_BR.po create mode 100644 project_department/i18n/pt_PT.po create mode 100644 project_department/i18n/ro.po create mode 100644 project_department/i18n/sl.po create mode 100644 project_department/i18n/sv.po create mode 100644 project_department/i18n/tr.po create mode 100644 project_department/i18n/uk.po create mode 100644 project_department/i18n/zh_CN.po diff --git a/project_department/README.rst b/project_department/README.rst index e5d95c19c9..a4808882e9 100644 --- a/project_department/README.rst +++ b/project_department/README.rst @@ -15,7 +15,7 @@ Usage .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/140/project + :target: https://runbot.odoo-community.org/runbot/140/10.0 Bug Tracker diff --git a/project_department/i18n/ar.po b/project_department/i18n/ar.po new file mode 100644 index 0000000000..b3ff448add --- /dev/null +++ b/project_department/i18n/ar.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..47658cd695 --- /dev/null +++ b/project_department/i18n/ca.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..b6f0f86e34 --- /dev/null +++ b/project_department/i18n/de.po @@ -0,0 +1,35 @@ +# 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: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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 "Aufgabe" diff --git a/project_department/i18n/el.po b/project_department/i18n/el.po new file mode 100644 index 0000000000..37296d38da --- /dev/null +++ b/project_department/i18n/el.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..016ebb64b2 --- /dev/null +++ b/project_department/i18n/es.po @@ -0,0 +1,35 @@ +# 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 (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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_CR.po b/project_department/i18n/es_CR.po new file mode 100644 index 0000000000..e70edcf307 --- /dev/null +++ b/project_department/i18n/es_CR.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..8af33a51fe --- /dev/null +++ b/project_department/i18n/es_MX.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..889370c392 --- /dev/null +++ b/project_department/i18n/es_VE.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..4a0a1499fb --- /dev/null +++ b/project_department/i18n/fi.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..e7fe87e16a --- /dev/null +++ b/project_department/i18n/fr.po @@ -0,0 +1,35 @@ +# 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: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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 "Tâche" diff --git a/project_department/i18n/gl.po b/project_department/i18n/gl.po new file mode 100644 index 0000000000..8256803eac --- /dev/null +++ b/project_department/i18n/gl.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..a088d0f055 --- /dev/null +++ b/project_department/i18n/hr.po @@ -0,0 +1,36 @@ +# 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: 2017-07-06 02:45+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Odjel" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..ac7ccfa843 --- /dev/null +++ b/project_department/i18n/hr_HR.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..d7984e54fc --- /dev/null +++ b/project_department/i18n/hu.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..8f2988320b --- /dev/null +++ b/project_department/i18n/it.po @@ -0,0 +1,35 @@ +# 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: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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 "Attività" diff --git a/project_department/i18n/ja.po b/project_department/i18n/ja.po new file mode 100644 index 0000000000..452585a023 --- /dev/null +++ b/project_department/i18n/ja.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..a5b03f45a4 --- /dev/null +++ b/project_department/i18n/lt.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\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:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..b3bf50864a --- /dev/null +++ b/project_department/i18n/lv.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..108ac902c7 --- /dev/null +++ b/project_department/i18n/mk.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..aa260a9b14 --- /dev/null +++ b/project_department/i18n/mn.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..2502d82b60 --- /dev/null +++ b/project_department/i18n/nl.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..ae9e3b0d91 --- /dev/null +++ b/project_department/i18n/nl_NL.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "Afdeling" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..0e9a042289 --- /dev/null +++ b/project_department/i18n/pl.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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/pt.po b/project_department/i18n/pt.po new file mode 100644 index 0000000000..3cb54522a4 --- /dev/null +++ b/project_department/i18n/pt.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..bfed35346f --- /dev/null +++ b/project_department/i18n/pt_BR.po @@ -0,0 +1,35 @@ +# 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 (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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_PT.po b/project_department/i18n/pt_PT.po new file mode 100644 index 0000000000..fe72ac12d5 --- /dev/null +++ b/project_department/i18n/pt_PT.po @@ -0,0 +1,35 @@ +# 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 (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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/ro.po b/project_department/i18n/ro.po new file mode 100644 index 0000000000..87ec4eaf52 --- /dev/null +++ b/project_department/i18n/ro.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..c043b59824 --- /dev/null +++ b/project_department/i18n/sl.po @@ -0,0 +1,35 @@ +# 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: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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 "Opravilo" diff --git a/project_department/i18n/sv.po b/project_department/i18n/sv.po new file mode 100644 index 0000000000..723964017b --- /dev/null +++ b/project_department/i18n/sv.po @@ -0,0 +1,35 @@ +# 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: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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 "Uppgift" diff --git a/project_department/i18n/tr.po b/project_department/i18n/tr.po new file mode 100644 index 0000000000..22ae132e23 --- /dev/null +++ b/project_department/i18n/tr.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..fd5402ea32 --- /dev/null +++ b/project_department/i18n/uk.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\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:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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..826447ea74 --- /dev/null +++ b/project_department/i18n/zh_CN.po @@ -0,0 +1,35 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: project_department +#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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 "任务" From 65bcb052b470a9352025620026e28e5fe87cff77 Mon Sep 17 00:00:00 2001 From: Artem Kostyuk Date: Wed, 27 Dec 2017 12:12:33 +0200 Subject: [PATCH 20/44] [MIG] project_department: Migrate to 11.0 --- project_department/LICENSE | 18 ----------- project_department/README.rst | 9 +++--- project_department/__init__.py | 1 - project_department/__manifest__.py | 9 ++---- project_department/i18n/ar.po | 7 +++-- project_department/i18n/ca.po | 4 +-- project_department/i18n/de.po | 4 +-- project_department/i18n/el.po | 4 +-- project_department/i18n/es.po | 4 +-- project_department/i18n/es_CR.po | 7 +++-- project_department/i18n/es_MX.po | 7 +++-- project_department/i18n/es_VE.po | 7 +++-- project_department/i18n/fi.po | 4 +-- project_department/i18n/fr.po | 4 +-- project_department/i18n/gl.po | 4 +-- project_department/i18n/hr.po | 7 +++-- project_department/i18n/hr_HR.po | 10 +++--- project_department/i18n/hu.po | 4 +-- project_department/i18n/it.po | 4 +-- project_department/i18n/ja.po | 4 +-- project_department/i18n/lt.po | 7 +++-- project_department/i18n/lv.po | 7 +++-- project_department/i18n/mk.po | 4 +-- project_department/i18n/mn.po | 4 +-- project_department/i18n/nl.po | 4 +-- project_department/i18n/nl_NL.po | 7 +++-- project_department/i18n/pl.po | 8 +++-- .../i18n/project_department.pot | 31 +++++++++++++++++++ project_department/i18n/pt.po | 4 +-- project_department/i18n/pt_BR.po | 7 +++-- project_department/i18n/pt_PT.po | 7 +++-- project_department/i18n/ro.po | 7 +++-- project_department/i18n/sl.po | 7 +++-- project_department/i18n/sv.po | 4 +-- project_department/i18n/tr.po | 4 +-- project_department/i18n/uk.po | 7 +++-- project_department/i18n/zh_CN.po | 7 +++-- project_department/models/__init__.py | 1 - project_department/models/project.py | 2 -- project_department/views/project.xml | 10 +++--- 40 files changed, 143 insertions(+), 118 deletions(-) delete mode 100644 project_department/LICENSE create mode 100644 project_department/i18n/project_department.pot diff --git a/project_department/LICENSE b/project_department/LICENSE deleted file mode 100644 index cdc3367da2..0000000000 --- a/project_department/LICENSE +++ /dev/null @@ -1,18 +0,0 @@ -OpenERP, Open Source Management Solution - -Original author: Joël Grand-Guillaume -Copyright © 2011 Camptocamp SA (http://www.camptocamp.com) -Copyright © 2013 Daniel Reis (SECURITAS) - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as -published by the Free Software Foundation, either version 3 of the -License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. - -You should have received a copy of the GNU Affero General Public Lice -along with this program. If not, see . diff --git a/project_department/README.rst b/project_department/README.rst index a4808882e9..3afa42bec0 100644 --- a/project_department/README.rst +++ b/project_department/README.rst @@ -2,9 +2,9 @@ :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 -================================== -Project Departement Categorization -================================== +================================= +Project Department Categorization +================================= Add Department to Projects and task to corresponding tree, search and form views. @@ -15,7 +15,7 @@ Usage .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/140/10.0 + :target: https://runbot.odoo-community.org/runbot/140/11.0 Bug Tracker @@ -41,6 +41,7 @@ Contributors * Daniel Reis * Yannick Vaucher * Dave Burkholder +* Artem Kostyuk Maintainer diff --git a/project_department/__init__.py b/project_department/__init__.py index a0fdc10fe1..0650744f6b 100644 --- a/project_department/__init__.py +++ b/project_department/__init__.py @@ -1,2 +1 @@ -# -*- coding: utf-8 -*- from . import models diff --git a/project_department/__manifest__.py b/project_department/__manifest__.py index d380878667..05251dabda 100644 --- a/project_department/__manifest__.py +++ b/project_department/__manifest__.py @@ -1,18 +1,15 @@ -# -*- coding: utf-8 -*- # 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": "10.0.1.0.0", - "author": "Camptocamp, Daniel Reis,Odoo Community Association (OCA)", + "version": "11.0.1.0.0", + "author": "Camptocamp, Daniel Reis, Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Generic Modules/Projects & Services", - "website": "http://camptocamp.com", + "website": "https://github.com/OCA/project", "depends": [ "analytic_base_department", "project", ], "data": ["views/project.xml"], - "auto_install": True, - 'installable': True, } diff --git a/project_department/i18n/ar.po b/project_department/i18n/ar.po index b3ff448add..5fbafb9360 100644 --- a/project_department/i18n/ar.po +++ b/project_department/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"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:ir.ui.view,arch_db:project_department.view_project_project_filter diff --git a/project_department/i18n/ca.po b/project_department/i18n/ca.po index 47658cd695..2a9e3c4fb5 100644 --- a/project_department/i18n/ca.po +++ b/project_department/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/de.po b/project_department/i18n/de.po index b6f0f86e34..2a327c584c 100644 --- a/project_department/i18n/de.po +++ b/project_department/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-17 02:52+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/el.po b/project_department/i18n/el.po index 37296d38da..6f063098fb 100644 --- a/project_department/i18n/el.po +++ b/project_department/i18n/el.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/es.po b/project_department/i18n/es.po index 016ebb64b2..7ed4f85980 100644 --- a/project_department/i18n/es.po +++ b/project_department/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-17 02:52+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/es_CR.po b/project_department/i18n/es_CR.po index e70edcf307..7cd69141ee 100644 --- a/project_department/i18n/es_CR.po +++ b/project_department/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/es_MX.po b/project_department/i18n/es_MX.po index 8af33a51fe..f6ed8647a0 100644 --- a/project_department/i18n/es_MX.po +++ b/project_department/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/es_VE.po b/project_department/i18n/es_VE.po index 889370c392..d56e95e224 100644 --- a/project_department/i18n/es_VE.po +++ b/project_department/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/fi.po b/project_department/i18n/fi.po index 4a0a1499fb..f649733288 100644 --- a/project_department/i18n/fi.po +++ b/project_department/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/fr.po b/project_department/i18n/fr.po index e7fe87e16a..81cd80abc3 100644 --- a/project_department/i18n/fr.po +++ b/project_department/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-17 02:52+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: project_department diff --git a/project_department/i18n/gl.po b/project_department/i18n/gl.po index 8256803eac..5a3d5b84c8 100644 --- a/project_department/i18n/gl.po +++ b/project_department/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/hr.po b/project_department/i18n/hr.po index a088d0f055..09f46f5ccd 100644 --- a/project_department/i18n/hr.po +++ b/project_department/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 # Bole , 2017 @@ -13,11 +13,12 @@ msgstr "" "PO-Revision-Date: 2017-07-06 02:45+0000\n" "Last-Translator: Bole , 2017\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" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"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:ir.ui.view,arch_db:project_department.view_project_project_filter diff --git a/project_department/i18n/hr_HR.po b/project_department/i18n/hr_HR.po index ac7ccfa843..118390c9db 100644 --- a/project_department/i18n/hr_HR.po +++ b/project_department/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "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-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" -"Language: hr_HR\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"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:ir.ui.view,arch_db:project_department.view_project_project_filter diff --git a/project_department/i18n/hu.po b/project_department/i18n/hu.po index d7984e54fc..97cf591f10 100644 --- a/project_department/i18n/hu.po +++ b/project_department/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/it.po b/project_department/i18n/it.po index 8f2988320b..93b10a5832 100644 --- a/project_department/i18n/it.po +++ b/project_department/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-17 02:52+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/ja.po b/project_department/i18n/ja.po index 452585a023..934b4f306e 100644 --- a/project_department/i18n/ja.po +++ b/project_department/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: project_department diff --git a/project_department/i18n/lt.po b/project_department/i18n/lt.po index a5b03f45a4..52e7386dc4 100644 --- a/project_department/i18n/lt.po +++ b/project_department/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: lt\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" +"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:ir.ui.view,arch_db:project_department.view_project_project_filter diff --git a/project_department/i18n/lv.po b/project_department/i18n/lv.po index b3bf50864a..65307540ca 100644 --- a/project_department/i18n/lv.po +++ b/project_department/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: project_department #: model:ir.ui.view,arch_db:project_department.view_project_project_filter diff --git a/project_department/i18n/mk.po b/project_department/i18n/mk.po index 108ac902c7..1f3e6ec264 100644 --- a/project_department/i18n/mk.po +++ b/project_department/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: project_department diff --git a/project_department/i18n/mn.po b/project_department/i18n/mn.po index aa260a9b14..74585b685a 100644 --- a/project_department/i18n/mn.po +++ b/project_department/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/nl.po b/project_department/i18n/nl.po index 2502d82b60..df055865e5 100644 --- a/project_department/i18n/nl.po +++ b/project_department/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/nl_NL.po b/project_department/i18n/nl_NL.po index ae9e3b0d91..efd8e2bd89 100644 --- a/project_department/i18n/nl_NL.po +++ b/project_department/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/pl.po b/project_department/i18n/pl.po index 0e9a042289..ed2fde09f8 100644 --- a/project_department/i18n/pl.po +++ b/project_department/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "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" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"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:ir.ui.view,arch_db:project_department.view_project_project_filter diff --git a/project_department/i18n/project_department.pot b/project_department/i18n/project_department.pot new file mode 100644 index 0000000000..572ea0cd43 --- /dev/null +++ b/project_department/i18n/project_department.pot @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * project_department +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.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:ir.ui.view,arch_db:project_department.view_project_project_filter +msgid "Department" +msgstr "" + +#. module: project_department +#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id +#: model: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 index 3cb54522a4..20fcae529e 100644 --- a/project_department/i18n/pt.po +++ b/project_department/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/pt_BR.po b/project_department/i18n/pt_BR.po index bfed35346f..2c55abcfb1 100644 --- a/project_department/i18n/pt_BR.po +++ b/project_department/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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 (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\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" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: project_department diff --git a/project_department/i18n/pt_PT.po b/project_department/i18n/pt_PT.po index fe72ac12d5..50b2b65a86 100644 --- a/project_department/i18n/pt_PT.po +++ b/project_department/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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 (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\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" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/ro.po b/project_department/i18n/ro.po index 87ec4eaf52..6194530798 100644 --- a/project_department/i18n/ro.po +++ b/project_department/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: project_department #: model:ir.ui.view,arch_db:project_department.view_project_project_filter diff --git a/project_department/i18n/sl.po b/project_department/i18n/sl.po index c043b59824..35e2306c38 100644 --- a/project_department/i18n/sl.po +++ b/project_department/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-06-17 02:52+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: project_department #: model:ir.ui.view,arch_db:project_department.view_project_project_filter diff --git a/project_department/i18n/sv.po b/project_department/i18n/sv.po index 723964017b..ed51f0efc3 100644 --- a/project_department/i18n/sv.po +++ b/project_department/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-17 02:52+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department diff --git a/project_department/i18n/tr.po b/project_department/i18n/tr.po index 22ae132e23..3456a6a711 100644 --- a/project_department/i18n/tr.po +++ b/project_department/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: project_department diff --git a/project_department/i18n/uk.po b/project_department/i18n/uk.po index fd5402ea32..3c2fbaa6ea 100644 --- a/project_department/i18n/uk.po +++ b/project_department/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: uk\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" +"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:ir.ui.view,arch_db:project_department.view_project_project_filter diff --git a/project_department/i18n/zh_CN.po b/project_department/i18n/zh_CN.po index 826447ea74..eb4c7d2605 100644 --- a/project_department/i18n/zh_CN.po +++ b/project_department/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * project_department -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: project_department diff --git a/project_department/models/__init__.py b/project_department/models/__init__.py index fd49e08c0b..351a3ad34b 100644 --- a/project_department/models/__init__.py +++ b/project_department/models/__init__.py @@ -1,2 +1 @@ -# -*- coding: utf-8 -*- from . import project diff --git a/project_department/models/project.py b/project_department/models/project.py index edcb2c3342..68385a82ea 100644 --- a/project_department/models/project.py +++ b/project_department/models/project.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2014 Joël Grand-Guillaume (Camptocamp) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import fields, models @@ -9,7 +8,6 @@ class ProjectTask(models.Model): project_department_id = fields.Many2one( related='project_id.department_id', - comodel_name='hr.department', string='Project Department', store=True, readonly=True) diff --git a/project_department/views/project.xml b/project_department/views/project.xml index 20771c9a84..c307669425 100644 --- a/project_department/views/project.xml +++ b/project_department/views/project.xml @@ -21,8 +21,8 @@ - - + + @@ -56,7 +56,7 @@ - project.task.departement.form + project.task.department.form project.task @@ -73,8 +73,8 @@ - - + + From 525f3857a3de8ac16405c79b0bc948fe3ff96ab0 Mon Sep 17 00:00:00 2001 From: c2cdidier Date: Mon, 18 Jun 2018 09:34:23 +0000 Subject: [PATCH 21/44] Translated using Weblate (French) [ci skip] Currently translated at 100.0% (3 of 3 strings) Translation: project-11.0/project-11.0-project_department Translate-URL: https://translation.odoo-community.org/projects/project-11-0/project-11-0-project_department/fr/ --- project_department/i18n/fr.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/project_department/i18n/fr.po b/project_department/i18n/fr.po index 81cd80abc3..a28306e938 100644 --- a/project_department/i18n/fr.po +++ b/project_department/i18n/fr.po @@ -9,25 +9,26 @@ 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" +"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" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.0.1\n" #. module: project_department #: model:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" -msgstr "" +msgstr "Département" #. module: project_department #: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id #: model:ir.ui.view,arch_db:project_department.view_task_search_form msgid "Project Department" -msgstr "" +msgstr "Département du projet" #. module: project_department #: model:ir.model,name:project_department.model_project_task From cb4b4999a6ac2e4ecf61a27c6254e61c90616251 Mon Sep 17 00:00:00 2001 From: Rodrigo Macedo Date: Wed, 20 Jun 2018 13:25:14 +0000 Subject: [PATCH 22/44] =?UTF-8?q?Translated=20using=20Weblate=20(Portugu?= =?UTF-8?q?=C3=AAs=20(Brasil))?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 100,0% (3 of 3 strings) Translation: project-11.0/project-11.0-project_department Translate-URL: https://translation.odoo-community.org/projects/project-11-0/project-11-0-project_department/pt_BR/ --- project_department/i18n/pt_BR.po | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/project_department/i18n/pt_BR.po b/project_department/i18n/pt_BR.po index 2c55abcfb1..f98d461c79 100644 --- a/project_department/i18n/pt_BR.po +++ b/project_department/i18n/pt_BR.po @@ -9,26 +9,27 @@ 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 (Brazil) (https://www.transifex.com/oca/" -"teams/23907/pt_BR/)\n" +"PO-Revision-Date: 2018-06-20 13:25+0000\n" +"Last-Translator: Rodrigo Macedo \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" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.0.1\n" #. module: project_department #: model:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" -msgstr "" +msgstr "Departamento" #. module: project_department #: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id #: model:ir.ui.view,arch_db:project_department.view_task_search_form msgid "Project Department" -msgstr "" +msgstr "Departamento de Projeto" #. module: project_department #: model:ir.model,name:project_department.model_project_task From 02ae62293a364b1830b6959c5628810a802dc091 Mon Sep 17 00:00:00 2001 From: Daniel Reis Date: Sun, 23 Sep 2018 22:21:21 +0000 Subject: [PATCH 23/44] Translated using Weblate (Portuguese (Portugal)) Currently translated at 100,0% (3 of 3 strings) Translation: project-11.0/project-11.0-project_department Translate-URL: https://translation.odoo-community.org/projects/project-11-0/project-11-0-project_department/pt_PT/ --- project_department/i18n/pt_PT.po | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/project_department/i18n/pt_PT.po b/project_department/i18n/pt_PT.po index 50b2b65a86..0038f396dc 100644 --- a/project_department/i18n/pt_PT.po +++ b/project_department/i18n/pt_PT.po @@ -9,26 +9,27 @@ 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 (Portugal) (https://www.transifex.com/oca/" -"teams/23907/pt_PT/)\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" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.1.1\n" #. module: project_department #: model:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" -msgstr "" +msgstr "Departamento" #. module: project_department #: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id #: model:ir.ui.view,arch_db:project_department.view_task_search_form msgid "Project Department" -msgstr "" +msgstr "Departamento do Projeto" #. module: project_department #: model:ir.model,name:project_department.model_project_task From b697f9b86774a34bc5eeff4cdbf9ab9bd231afc2 Mon Sep 17 00:00:00 2001 From: Ben Brich Date: Fri, 22 Mar 2019 12:42:30 +0000 Subject: [PATCH 24/44] Translated using Weblate (German) Currently translated at 100.0% (3 of 3 strings) Translation: project-11.0/project-11.0-project_department Translate-URL: https://translation.odoo-community.org/projects/project-11-0/project-11-0-project_department/de/ --- project_department/i18n/de.po | 11 ++++++----- project_department/static/description/icon.png | Bin 0 -> 9455 bytes 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 project_department/static/description/icon.png diff --git a/project_department/i18n/de.po b/project_department/i18n/de.po index 2a327c584c..ae4726bcaf 100644 --- a/project_department/i18n/de.po +++ b/project_department/i18n/de.po @@ -9,25 +9,26 @@ 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" +"PO-Revision-Date: 2019-03-22 15:14+0000\n" +"Last-Translator: Ben Brich \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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.5.1\n" #. module: project_department #: model:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" -msgstr "" +msgstr "Abteilung" #. module: project_department #: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id #: model:ir.ui.view,arch_db:project_department.view_task_search_form msgid "Project Department" -msgstr "" +msgstr "Projekt Abteilung" #. module: project_department #: model:ir.model,name:project_department.model_project_task diff --git a/project_department/static/description/icon.png b/project_department/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 From 4edf7fcd734049932e2bc74142210e2a8c2334d7 Mon Sep 17 00:00:00 2001 From: Matjaz Mozetic Date: Wed, 24 Jul 2019 16:41:23 +0000 Subject: [PATCH 25/44] Translated using Weblate (Slovenian) Currently translated at 100.0% (3 of 3 strings) Translation: project-11.0/project-11.0-project_department Translate-URL: https://translation.odoo-community.org/projects/project-11-0/project-11-0-project_department/sl/ --- project_department/i18n/sl.po | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/project_department/i18n/sl.po b/project_department/i18n/sl.po index 35e2306c38..a0c2289caa 100644 --- a/project_department/i18n/sl.po +++ b/project_department/i18n/sl.po @@ -9,26 +9,27 @@ 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" +"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" +"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:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" -msgstr "" +msgstr "Oddelek" #. module: project_department #: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id #: model:ir.ui.view,arch_db:project_department.view_task_search_form msgid "Project Department" -msgstr "" +msgstr "Projektni oddelek" #. module: project_department #: model:ir.model,name:project_department.model_project_task From 03d925f9290a92cc7da0a9bd5afca1876b55318c Mon Sep 17 00:00:00 2001 From: "Er. Vaidehi Vasani" Date: Mon, 13 Jun 2022 17:46:14 +0530 Subject: [PATCH 26/44] [MIG] project_department in v15 --- project_department/README.rst | 68 ++- project_department/__manifest__.py | 3 +- .../i18n/project_department.pot | 19 +- project_department/models/project.py | 17 +- project_department/readme/CONTRIBUTORS.rst | 6 + project_department/readme/DESCRIPTION.rst | 2 + .../static/description/index.html | 426 ++++++++++++++++++ project_department/views/project.xml | 57 +-- 8 files changed, 535 insertions(+), 63 deletions(-) create mode 100644 project_department/readme/CONTRIBUTORS.rst create mode 100644 project_department/readme/DESCRIPTION.rst create mode 100644 project_department/static/description/index.html diff --git a/project_department/README.rst b/project_department/README.rst index 3afa42bec0..89a89c08f4 100644 --- a/project_department/README.rst +++ b/project_department/README.rst @@ -1,60 +1,80 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - ================================= Project Department Categorization ================================= +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/licence-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/15.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-15-0/project-15-0-project_department + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/140/15.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + Add Department to Projects and task to corresponding tree, search and form views. +**Table of contents** -Usage -===== - -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/140/11.0 - +.. 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 smashing it by providing a detailed and welcomed feedback. +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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +~~~~~~~ -* Odoo Community Association: `Icon `_. +* Camptocamp +* Daniel Reis Contributors ------------- +~~~~~~~~~~~~ * Joël Grand-Guillaume * Daniel Reis * Yannick Vaucher * Dave Burkholder * Artem Kostyuk +* Vaidehi Vasani +Maintainers +~~~~~~~~~~~ -Maintainer ----------- +This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org -This module is maintained by the OCA. - 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. -To contribute to this module, please visit https://odoo-community.org. +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/__manifest__.py b/project_department/__manifest__.py index 05251dabda..12f54d896f 100644 --- a/project_department/__manifest__.py +++ b/project_department/__manifest__.py @@ -2,13 +2,12 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Project Department Categorization", - "version": "11.0.1.0.0", + "version": "15.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": [ - "analytic_base_department", "project", ], "data": ["views/project.xml"], diff --git a/project_department/i18n/project_department.pot b/project_department/i18n/project_department.pot index 572ea0cd43..f9475a6ff8 100644 --- a/project_department/i18n/project_department.pot +++ b/project_department/i18n/project_department.pot @@ -1,12 +1,12 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * project_department +# * project_department # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" +"Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: <>\n" +"Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,13 +14,19 @@ msgstr "" "Plural-Forms: \n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" @@ -28,4 +34,3 @@ msgstr "" #: model:ir.model,name:project_department.model_project_task msgid "Task" msgstr "" - diff --git a/project_department/models/project.py b/project_department/models/project.py index 68385a82ea..51093883fb 100644 --- a/project_department/models/project.py +++ b/project_department/models/project.py @@ -4,10 +4,19 @@ class ProjectTask(models.Model): - _inherit = 'project.task' + _inherit = "project.task" project_department_id = fields.Many2one( - related='project_id.department_id', - string='Project Department', + related="project_id.department_id", + string="Project Department", store=True, - readonly=True) + readonly=True, + ) + + +class ProjectProject(models.Model): + _inherit = "project.project" + + department_id = fields.Many2one( + comodel_name="hr.department", string="Project Department" + ) diff --git a/project_department/readme/CONTRIBUTORS.rst b/project_department/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000000..035631db77 --- /dev/null +++ b/project_department/readme/CONTRIBUTORS.rst @@ -0,0 +1,6 @@ +* Joël Grand-Guillaume +* Daniel Reis +* Yannick Vaucher +* Dave Burkholder +* Artem Kostyuk +* Vaidehi Vasani diff --git a/project_department/readme/DESCRIPTION.rst b/project_department/readme/DESCRIPTION.rst new file mode 100644 index 0000000000..facd0d9d54 --- /dev/null +++ b/project_department/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +Add Department to Projects and task to corresponding tree, search and form +views. diff --git a/project_department/static/description/index.html b/project_department/static/description/index.html new file mode 100644 index 0000000000..5f22c34320 --- /dev/null +++ b/project_department/static/description/index.html @@ -0,0 +1,426 @@ + + + + + + +Project Department Categorization + + + +
+

Project Department Categorization

+ + +

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

+

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 smashing 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 index c307669425..a1c33e7e13 100644 --- a/project_department/views/project.xml +++ b/project_department/views/project.xml @@ -1,13 +1,12 @@ - project.project.form project.project - + form - + @@ -15,27 +14,31 @@ project.project.select project.project - + search - + - - - + + + project.project.tree project.project - + tree child_ids - + @@ -43,14 +46,18 @@ project.task.search.form project.task - + - - - - - - + + + + + + @@ -58,11 +65,11 @@ project.task.department.form project.task - - + + - + @@ -70,14 +77,12 @@ project.task.department.tree project.task - - + + - - + + - - From 1f87ba8b19f5482fea6b65aa1f198abd43f3aee2 Mon Sep 17 00:00:00 2001 From: CarlosRoca13 Date: Mon, 8 Aug 2022 11:35:43 +0200 Subject: [PATCH 27/44] [FIX] project_department: Add dependency to hr --- project_department/README.rst | 3 +++ project_department/__manifest__.py | 3 ++- project_department/readme/CONTRIBUTORS.rst | 3 +++ project_department/static/description/index.html | 4 ++++ 4 files changed, 12 insertions(+), 1 deletion(-) diff --git a/project_department/README.rst b/project_department/README.rst index 89a89c08f4..f77c2f06d5 100644 --- a/project_department/README.rst +++ b/project_department/README.rst @@ -61,6 +61,9 @@ Contributors * Dave Burkholder * Artem Kostyuk * Vaidehi Vasani +* `Tecnativa `_ + + * Carlos Roca Maintainers ~~~~~~~~~~~ diff --git a/project_department/__manifest__.py b/project_department/__manifest__.py index 12f54d896f..2cacbf0dfd 100644 --- a/project_department/__manifest__.py +++ b/project_department/__manifest__.py @@ -2,13 +2,14 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Project Department Categorization", - "version": "15.0.1.0.0", + "version": "15.0.1.0.1", "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/readme/CONTRIBUTORS.rst b/project_department/readme/CONTRIBUTORS.rst index 035631db77..7d9dc35c76 100644 --- a/project_department/readme/CONTRIBUTORS.rst +++ b/project_department/readme/CONTRIBUTORS.rst @@ -4,3 +4,6 @@ * Dave Burkholder * Artem Kostyuk * Vaidehi Vasani +* `Tecnativa `_ + + * Carlos Roca diff --git a/project_department/static/description/index.html b/project_department/static/description/index.html index 5f22c34320..0263c4262b 100644 --- a/project_department/static/description/index.html +++ b/project_department/static/description/index.html @@ -408,6 +408,10 @@

Contributors

  • Dave Burkholder <dave@thinkwelldesigns.com>
  • Artem Kostyuk <a.kostyuk@mobilunity.com>
  • Vaidehi Vasani <er.vaidehi.vasani@gmail.com>
  • +
  • Tecnativa
      +
    • Carlos Roca
    • +
    +
  • From 4b045ca97099173da5b83eece852e1bc51074cb5 Mon Sep 17 00:00:00 2001 From: Aiendry Sarkar Date: Fri, 28 Oct 2022 10:08:17 +0530 Subject: [PATCH 28/44] [MIG] project_department: Migration to 16.0 --- project_department/README.rst | 10 +++++----- project_department/__manifest__.py | 2 +- project_department/i18n/ar.po | 12 +++++++++--- project_department/i18n/ca.po | 12 +++++++++--- project_department/i18n/de.po | 12 +++++++++--- project_department/i18n/el.po | 12 +++++++++--- project_department/i18n/es.po | 12 +++++++++--- project_department/i18n/es_CR.po | 12 +++++++++--- project_department/i18n/es_MX.po | 12 +++++++++--- project_department/i18n/es_VE.po | 12 +++++++++--- project_department/i18n/fi.po | 12 +++++++++--- project_department/i18n/fr.po | 12 +++++++++--- project_department/i18n/gl.po | 12 +++++++++--- project_department/i18n/hr.po | 12 +++++++++--- project_department/i18n/hr_HR.po | 12 +++++++++--- project_department/i18n/hu.po | 12 +++++++++--- project_department/i18n/it.po | 12 +++++++++--- project_department/i18n/ja.po | 12 +++++++++--- project_department/i18n/lt.po | 12 +++++++++--- project_department/i18n/lv.po | 12 +++++++++--- project_department/i18n/mk.po | 12 +++++++++--- project_department/i18n/mn.po | 12 +++++++++--- project_department/i18n/nl.po | 12 +++++++++--- project_department/i18n/nl_NL.po | 12 +++++++++--- project_department/i18n/pl.po | 12 +++++++++--- project_department/i18n/project_department.pot | 2 +- project_department/i18n/pt.po | 12 +++++++++--- project_department/i18n/pt_BR.po | 16 +++++++++++----- project_department/i18n/pt_PT.po | 16 +++++++++++----- project_department/i18n/ro.po | 12 +++++++++--- project_department/i18n/sl.po | 16 +++++++++++----- project_department/i18n/sv.po | 12 +++++++++--- project_department/i18n/tr.po | 12 +++++++++--- project_department/i18n/uk.po | 12 +++++++++--- project_department/i18n/zh_CN.po | 12 +++++++++--- project_department/static/description/index.html | 6 +++--- 36 files changed, 304 insertions(+), 112 deletions(-) diff --git a/project_department/README.rst b/project_department/README.rst index f77c2f06d5..8d2ee2bd3f 100644 --- a/project_department/README.rst +++ b/project_department/README.rst @@ -14,13 +14,13 @@ Project Department Categorization :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/15.0/project_department + :target: https://github.com/OCA/project/tree/16.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-15-0/project-15-0-project_department + :target: https://translation.odoo-community.org/projects/project-16-0/project-16-0-project_department :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/140/15.0 + :target: https://runbot.odoo-community.org/runbot/140/16.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -39,7 +39,7 @@ 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 smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -78,6 +78,6 @@ 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. +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/__manifest__.py b/project_department/__manifest__.py index 2cacbf0dfd..1e00a67910 100644 --- a/project_department/__manifest__.py +++ b/project_department/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Project Department Categorization", - "version": "15.0.1.0.1", + "version": "16.0.1.0.0", "author": "Camptocamp, Daniel Reis, Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Generic Modules/Projects & Services", diff --git a/project_department/i18n/ar.po b/project_department/i18n/ar.po index 5fbafb9360..70dc959d92 100644 --- a/project_department/i18n/ar.po +++ b/project_department/i18n/ar.po @@ -20,13 +20,19 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/ca.po b/project_department/i18n/ca.po index 2a9e3c4fb5..17bc9c2e97 100644 --- a/project_department/i18n/ca.po +++ b/project_department/i18n/ca.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/de.po b/project_department/i18n/de.po index ae4726bcaf..e63fd0757f 100644 --- a/project_department/i18n/de.po +++ b/project_department/i18n/de.po @@ -20,13 +20,19 @@ msgstr "" "X-Generator: Weblate 3.5.1\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "Abteilung" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "Projekt Abteilung" diff --git a/project_department/i18n/el.po b/project_department/i18n/el.po index 6f063098fb..7f12dd29b8 100644 --- a/project_department/i18n/el.po +++ b/project_department/i18n/el.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/es.po b/project_department/i18n/es.po index 7ed4f85980..4ccb2d4985 100644 --- a/project_department/i18n/es.po +++ b/project_department/i18n/es.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/es_CR.po b/project_department/i18n/es_CR.po index 7cd69141ee..925249ba87 100644 --- a/project_department/i18n/es_CR.po +++ b/project_department/i18n/es_CR.po @@ -20,13 +20,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/es_MX.po b/project_department/i18n/es_MX.po index f6ed8647a0..439c75a463 100644 --- a/project_department/i18n/es_MX.po +++ b/project_department/i18n/es_MX.po @@ -20,13 +20,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/es_VE.po b/project_department/i18n/es_VE.po index d56e95e224..ba3882e295 100644 --- a/project_department/i18n/es_VE.po +++ b/project_department/i18n/es_VE.po @@ -20,13 +20,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/fi.po b/project_department/i18n/fi.po index f649733288..894384b5bd 100644 --- a/project_department/i18n/fi.po +++ b/project_department/i18n/fi.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/fr.po b/project_department/i18n/fr.po index a28306e938..5e0477bd14 100644 --- a/project_department/i18n/fr.po +++ b/project_department/i18n/fr.po @@ -20,13 +20,19 @@ msgstr "" "X-Generator: Weblate 3.0.1\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "Département" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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" diff --git a/project_department/i18n/gl.po b/project_department/i18n/gl.po index 5a3d5b84c8..157d17d3cf 100644 --- a/project_department/i18n/gl.po +++ b/project_department/i18n/gl.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/hr.po b/project_department/i18n/hr.po index 09f46f5ccd..6bf4e3bd1f 100644 --- a/project_department/i18n/hr.po +++ b/project_department/i18n/hr.po @@ -21,13 +21,19 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "Odjel" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 odjel" diff --git a/project_department/i18n/hr_HR.po b/project_department/i18n/hr_HR.po index 118390c9db..2663976b36 100644 --- a/project_department/i18n/hr_HR.po +++ b/project_department/i18n/hr_HR.po @@ -21,13 +21,19 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/hu.po b/project_department/i18n/hu.po index 97cf591f10..f8f3674eb5 100644 --- a/project_department/i18n/hu.po +++ b/project_department/i18n/hu.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/it.po b/project_department/i18n/it.po index 93b10a5832..710fdadffb 100644 --- a/project_department/i18n/it.po +++ b/project_department/i18n/it.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/ja.po b/project_department/i18n/ja.po index 934b4f306e..ccc0d19d26 100644 --- a/project_department/i18n/ja.po +++ b/project_department/i18n/ja.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/lt.po b/project_department/i18n/lt.po index 52e7386dc4..359d1bd3e1 100644 --- a/project_department/i18n/lt.po +++ b/project_department/i18n/lt.po @@ -20,13 +20,19 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/lv.po b/project_department/i18n/lv.po index 65307540ca..7b47b02204 100644 --- a/project_department/i18n/lv.po +++ b/project_department/i18n/lv.po @@ -20,13 +20,19 @@ msgstr "" "2);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/mk.po b/project_department/i18n/mk.po index 1f3e6ec264..3f892718ad 100644 --- a/project_department/i18n/mk.po +++ b/project_department/i18n/mk.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/mn.po b/project_department/i18n/mn.po index 74585b685a..0e8b7e681c 100644 --- a/project_department/i18n/mn.po +++ b/project_department/i18n/mn.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/nl.po b/project_department/i18n/nl.po index df055865e5..55c93820f6 100644 --- a/project_department/i18n/nl.po +++ b/project_department/i18n/nl.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/nl_NL.po b/project_department/i18n/nl_NL.po index efd8e2bd89..99c610f658 100644 --- a/project_department/i18n/nl_NL.po +++ b/project_department/i18n/nl_NL.po @@ -20,13 +20,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "Afdeling" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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" diff --git a/project_department/i18n/pl.po b/project_department/i18n/pl.po index ed2fde09f8..86a52d744b 100644 --- a/project_department/i18n/pl.po +++ b/project_department/i18n/pl.po @@ -21,13 +21,19 @@ msgstr "" "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/project_department.pot b/project_department/i18n/project_department.pot index f9475a6ff8..b08975127a 100644 --- a/project_department/i18n/project_department.pot +++ b/project_department/i18n/project_department.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 15.0\n" +"Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" diff --git a/project_department/i18n/pt.po b/project_department/i18n/pt.po index 20fcae529e..b8c522dae7 100644 --- a/project_department/i18n/pt.po +++ b/project_department/i18n/pt.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/pt_BR.po b/project_department/i18n/pt_BR.po index f98d461c79..fef76d3bdd 100644 --- a/project_department/i18n/pt_BR.po +++ b/project_department/i18n/pt_BR.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2017-06-17 02:52+0000\n" "PO-Revision-Date: 2018-06-20 13:25+0000\n" "Last-Translator: Rodrigo Macedo \n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" -"23907/pt_BR/)\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" @@ -21,13 +21,19 @@ msgstr "" "X-Generator: Weblate 3.0.1\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "Departamento" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 de Projeto" diff --git a/project_department/i18n/pt_PT.po b/project_department/i18n/pt_PT.po index 0038f396dc..87c137b56d 100644 --- a/project_department/i18n/pt_PT.po +++ b/project_department/i18n/pt_PT.po @@ -11,8 +11,8 @@ msgstr "" "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-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" @@ -21,13 +21,19 @@ msgstr "" "X-Generator: Weblate 3.1.1\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "Departamento" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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" diff --git a/project_department/i18n/ro.po b/project_department/i18n/ro.po index 6194530798..146bc1bdbd 100644 --- a/project_department/i18n/ro.po +++ b/project_department/i18n/ro.po @@ -20,13 +20,19 @@ msgstr "" "2:1));\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/sl.po b/project_department/i18n/sl.po index a0c2289caa..c6d787d343 100644 --- a/project_department/i18n/sl.po +++ b/project_department/i18n/sl.po @@ -16,18 +16,24 @@ msgstr "" "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" +"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:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "Oddelek" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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" diff --git a/project_department/i18n/sv.po b/project_department/i18n/sv.po index ed51f0efc3..b048ab71e7 100644 --- a/project_department/i18n/sv.po +++ b/project_department/i18n/sv.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/tr.po b/project_department/i18n/tr.po index 3456a6a711..bec0365421 100644 --- a/project_department/i18n/tr.po +++ b/project_department/i18n/tr.po @@ -19,13 +19,19 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/uk.po b/project_department/i18n/uk.po index 3c2fbaa6ea..7ef0459e94 100644 --- a/project_department/i18n/uk.po +++ b/project_department/i18n/uk.po @@ -20,13 +20,19 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/i18n/zh_CN.po b/project_department/i18n/zh_CN.po index eb4c7d2605..736371d02d 100644 --- a/project_department/i18n/zh_CN.po +++ b/project_department/i18n/zh_CN.po @@ -20,13 +20,19 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: project_department -#: model:ir.ui.view,arch_db:project_department.view_project_project_filter +#: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter msgid "Department" msgstr "" #. module: project_department -#: model:ir.model.fields,field_description:project_department.field_project_task_project_department_id -#: model:ir.ui.view,arch_db:project_department.view_task_search_form +#: 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 "" diff --git a/project_department/static/description/index.html b/project_department/static/description/index.html index 0263c4262b..e8cc45a95e 100644 --- a/project_department/static/description/index.html +++ b/project_department/static/description/index.html @@ -367,7 +367,7 @@

    Project Department Categorization

    !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

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

    +

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

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

    Table of contents

    @@ -387,7 +387,7 @@

    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 smashing it by providing a detailed and welcomed -feedback.

    +feedback.

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

    @@ -421,7 +421,7 @@

    Maintainers

    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.

    +

    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.

    From fd7c62a18f0f702fef4778bf5e3b848dc7111e28 Mon Sep 17 00:00:00 2001 From: Bole Date: Wed, 15 Feb 2023 15:17:15 +0000 Subject: [PATCH 29/44] Translated using Weblate (Croatian) Currently translated at 100.0% (4 of 4 strings) Translation: project-16.0/project-16.0-project_department Translate-URL: https://translation.odoo-community.org/projects/project-16-0/project-16-0-project_department/hr/ --- project_department/i18n/hr.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/project_department/i18n/hr.po b/project_department/i18n/hr.po index 6bf4e3bd1f..b99543376c 100644 --- a/project_department/i18n/hr.po +++ b/project_department/i18n/hr.po @@ -10,8 +10,8 @@ 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: 2017-07-06 02:45+0000\n" -"Last-Translator: Bole , 2017\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" @@ -19,6 +19,7 @@ msgstr "" "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 @@ -28,7 +29,7 @@ msgstr "Odjel" #. module: project_department #: model:ir.model,name:project_department.model_project_project msgid "Project" -msgstr "" +msgstr "Projekt" #. module: project_department #: model:ir.model.fields,field_description:project_department.field_project_project__department_id From 4eff2648361d8d4c3e0c1d433358d37e22e81330 Mon Sep 17 00:00:00 2001 From: Nils Coenen Date: Fri, 3 Mar 2023 08:14:35 +0000 Subject: [PATCH 30/44] Translated using Weblate (German) Currently translated at 100.0% (4 of 4 strings) Translation: project-16.0/project-16.0-project_department Translate-URL: https://translation.odoo-community.org/projects/project-16-0/project-16-0-project_department/de/ --- project_department/i18n/de.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/project_department/i18n/de.po b/project_department/i18n/de.po index e63fd0757f..94da1e79d9 100644 --- a/project_department/i18n/de.po +++ b/project_department/i18n/de.po @@ -9,15 +9,15 @@ 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-03-22 15:14+0000\n" -"Last-Translator: Ben Brich \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 3.5.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 @@ -27,7 +27,7 @@ msgstr "Abteilung" #. module: project_department #: model:ir.model,name:project_department.model_project_project msgid "Project" -msgstr "" +msgstr "Projekt" #. module: project_department #: model:ir.model.fields,field_description:project_department.field_project_project__department_id From d754556261fa40815cb543b47fe163feb4fd8ae0 Mon Sep 17 00:00:00 2001 From: mymage Date: Mon, 10 Apr 2023 18:45:06 +0000 Subject: [PATCH 31/44] Translated using Weblate (Italian) Currently translated at 100.0% (4 of 4 strings) Translation: project-16.0/project-16.0-project_department Translate-URL: https://translation.odoo-community.org/projects/project-16-0/project-16-0-project_department/it/ --- project_department/i18n/it.po | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/project_department/i18n/it.po b/project_department/i18n/it.po index 710fdadffb..8fa1ae95d8 100644 --- a/project_department/i18n/it.po +++ b/project_department/i18n/it.po @@ -9,31 +9,32 @@ 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" +"PO-Revision-Date: 2023-04-10 21:22+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" +"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 "" +msgstr "Reparto" #. module: project_department #: model:ir.model,name:project_department.model_project_project msgid "Project" -msgstr "" +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 "" +msgstr "Reparto progetto" #. module: project_department #: model:ir.model,name:project_department.model_project_task From e2b6fa207c053ee6aed80586d7bc20c409d2209c Mon Sep 17 00:00:00 2001 From: mymage Date: Mon, 17 Apr 2023 20:00:04 +0000 Subject: [PATCH 32/44] Translated using Weblate (Italian) Currently translated at 100.0% (4 of 4 strings) Translation: project-16.0/project-16.0-project_department Translate-URL: https://translation.odoo-community.org/projects/project-16-0/project-16-0-project_department/it/ --- project_department/i18n/it.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project_department/i18n/it.po b/project_department/i18n/it.po index 8fa1ae95d8..84c7943756 100644 --- a/project_department/i18n/it.po +++ b/project_department/i18n/it.po @@ -9,7 +9,7 @@ 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-10 21:22+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" @@ -39,4 +39,4 @@ msgstr "Reparto progetto" #. module: project_department #: model:ir.model,name:project_department.model_project_task msgid "Task" -msgstr "Attività" +msgstr "Lavoro" From d954279f76aebd04acf49488a86e773a836d41cb Mon Sep 17 00:00:00 2001 From: Adriano Prado Date: Sun, 30 Jul 2023 12:03:12 +0000 Subject: [PATCH 33/44] Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (4 of 4 strings) Translation: project-16.0/project-16.0-project_department Translate-URL: https://translation.odoo-community.org/projects/project-16-0/project-16-0-project_department/pt_BR/ --- project_department/README.rst | 15 ++++---- project_department/i18n/pt_BR.po | 12 +++---- .../static/description/index.html | 34 ++++++++++--------- 3 files changed, 33 insertions(+), 28 deletions(-) diff --git a/project_department/README.rst b/project_department/README.rst index 8d2ee2bd3f..a7cbd3ea42 100644 --- a/project_department/README.rst +++ b/project_department/README.rst @@ -2,10 +2,13 @@ Project Department Categorization ================================= -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:5d274ae3667813d62f1d72d8217952a1c853c4becd92d57418414381a5edf8b4 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -19,11 +22,11 @@ Project Department Categorization .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/project-16-0/project-16-0-project_department :alt: Translate me on Weblate -.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/140/16.0 - :alt: Try me on Runbot +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/project&target_branch=16.0 + :alt: Try me on Runboat -|badge1| |badge2| |badge3| |badge4| |badge5| +|badge1| |badge2| |badge3| |badge4| |badge5| Add Department to Projects and task to corresponding tree, search and form views. @@ -38,7 +41,7 @@ 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 smashing it by providing a detailed and welcomed +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. diff --git a/project_department/i18n/pt_BR.po b/project_department/i18n/pt_BR.po index fef76d3bdd..57ca931a17 100644 --- a/project_department/i18n/pt_BR.po +++ b/project_department/i18n/pt_BR.po @@ -9,16 +9,16 @@ 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-20 13:25+0000\n" -"Last-Translator: Rodrigo Macedo \n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" -"teams/23907/pt_BR/)\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 3.0.1\n" +"X-Generator: Weblate 4.17\n" #. module: project_department #: model_terms:ir.ui.view,arch_db:project_department.view_project_project_filter @@ -28,7 +28,7 @@ msgstr "Departamento" #. module: project_department #: model:ir.model,name:project_department.model_project_project msgid "Project" -msgstr "" +msgstr "Projeto" #. module: project_department #: model:ir.model.fields,field_description:project_department.field_project_project__department_id diff --git a/project_department/static/description/index.html b/project_department/static/description/index.html index e8cc45a95e..ef74b157d7 100644 --- a/project_department/static/description/index.html +++ b/project_department/static/description/index.html @@ -1,20 +1,20 @@ - + - + Project Department Categorization -
    -

    Project Department Categorization

    +
    + + +Odoo Community Association + +
    +

    Project Department Categorization

    -

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

    +

    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

    @@ -385,24 +390,24 @@

    Project Department Categorization

    -

    Bug Tracker

    +

    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.

    +feedback.

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

    -

    Credits

    +

    Credits

    -

    Authors

    +

    Authors

    • Camptocamp
    • Daniel Reis
    -

    Contributors

    +

    Contributors

    -

    Maintainers

    +

    Maintainers

    This module is maintained by the OCA.

    Odoo Community Association @@ -430,10 +435,11 @@

    Maintainers

    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.

    +

    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.

    +
    From c3678c16440ff5989a829f38e39e5b7bc462e400 Mon Sep 17 00:00:00 2001 From: Wesley Oliveira Date: Wed, 21 Jan 2026 18:44:20 -0300 Subject: [PATCH 44/44] [MIG] project_department: Migration to 19.0 --- project_department/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_department/__manifest__.py b/project_department/__manifest__.py index ce4ddd2644..897b4f743a 100644 --- a/project_department/__manifest__.py +++ b/project_department/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Project Department Categorization", - "version": "18.0.1.0.0", + "version": "19.0.1.0.0", "author": "Camptocamp, Daniel Reis, Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Generic Modules/Projects & Services",