From 13ca2285cd7f8278b98d3764c5bca35ca86d2576 Mon Sep 17 00:00:00 2001 From: oihane Date: Thu, 5 Mar 2015 12:18:18 +0100 Subject: [PATCH 01/42] [MOD] Added and renamed *notes modules to *note --- mrp_production_note/README.rst | 2 + mrp_production_note/__init__.py | 19 ++++++++++ mrp_production_note/__openerp__.py | 37 +++++++++++++++++++ mrp_production_note/i18n/es.po | 28 ++++++++++++++ .../i18n/mrp_production_notes.pot | 28 ++++++++++++++ mrp_production_note/models/__init__.py | 19 ++++++++++ mrp_production_note/models/mrp_production.py | 25 +++++++++++++ .../views/mrp_production_view.xml | 17 +++++++++ 8 files changed, 175 insertions(+) create mode 100644 mrp_production_note/README.rst create mode 100644 mrp_production_note/__init__.py create mode 100644 mrp_production_note/__openerp__.py create mode 100644 mrp_production_note/i18n/es.po create mode 100644 mrp_production_note/i18n/mrp_production_notes.pot create mode 100644 mrp_production_note/models/__init__.py create mode 100644 mrp_production_note/models/mrp_production.py create mode 100644 mrp_production_note/views/mrp_production_view.xml diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst new file mode 100644 index 00000000000..ec2bdd51ecc --- /dev/null +++ b/mrp_production_note/README.rst @@ -0,0 +1,2 @@ +This module adds remark field to: + * Manufacturing orders diff --git a/mrp_production_note/__init__.py b/mrp_production_note/__init__.py new file mode 100644 index 00000000000..7fc7c09f9b0 --- /dev/null +++ b/mrp_production_note/__init__.py @@ -0,0 +1,19 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# 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 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 http://www.gnu.org/licenses/. +# +############################################################################## + +from . import models diff --git a/mrp_production_note/__openerp__.py b/mrp_production_note/__openerp__.py new file mode 100644 index 00000000000..7cfe73aac3b --- /dev/null +++ b/mrp_production_note/__openerp__.py @@ -0,0 +1,37 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# 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 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 http://www.gnu.org/licenses/. +# +############################################################################## + +{ + "name": "Notes in production orders", + "version": "1.0", + "depends": [ + "mrp", + ], + "author": "OdooMRP team", + "website": "http://www.odoomrp.com", + "contributors": [ + "Oihane Crucelaegui ", + "Pedro M. Baeza ", + "Ana Juaristi " + ], + "category": "Tools", + "data": [ + "views/mrp_production_view.xml", + ], + "installable": True, +} diff --git a/mrp_production_note/i18n/es.po b/mrp_production_note/i18n/es.po new file mode 100644 index 00000000000..d49c7defcb7 --- /dev/null +++ b/mrp_production_note/i18n/es.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0rc1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-08-04 08:51+0000\n" +"PO-Revision-Date: 2014-08-04 10:52+0100\n" +"Last-Translator: Oihane \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: \n" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Órden de producción" + +#. module: mrp_production_note +#: view:mrp.production:0 +#: field:mrp.production,notes:0 +msgid "Notes" +msgstr "Notas" + diff --git a/mrp_production_note/i18n/mrp_production_notes.pot b/mrp_production_note/i18n/mrp_production_notes.pot new file mode 100644 index 00000000000..bd1417aac16 --- /dev/null +++ b/mrp_production_note/i18n/mrp_production_notes.pot @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0rc1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-08-04 08:50+0000\n" +"PO-Revision-Date: 2014-08-04 08:50+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: view:mrp.production:0 +#: field:mrp.production,notes:0 +msgid "Notes" +msgstr "" + diff --git a/mrp_production_note/models/__init__.py b/mrp_production_note/models/__init__.py new file mode 100644 index 00000000000..a670e46778c --- /dev/null +++ b/mrp_production_note/models/__init__.py @@ -0,0 +1,19 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# 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 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 http://www.gnu.org/licenses/. +# +############################################################################## + +from . import mrp_production diff --git a/mrp_production_note/models/mrp_production.py b/mrp_production_note/models/mrp_production.py new file mode 100644 index 00000000000..3879571de8e --- /dev/null +++ b/mrp_production_note/models/mrp_production.py @@ -0,0 +1,25 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# 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 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 http://www.gnu.org/licenses/. +# +############################################################################## + +from openerp import models, fields + + +class MrpProduction(models.Model): + _inherit = 'mrp.production' + + notes = fields.Html() diff --git a/mrp_production_note/views/mrp_production_view.xml b/mrp_production_note/views/mrp_production_view.xml new file mode 100644 index 00000000000..fa719bfc7d0 --- /dev/null +++ b/mrp_production_note/views/mrp_production_view.xml @@ -0,0 +1,17 @@ + + + + + mrp.production.form + mrp.production + + + + + + + + + + + From 6d29bcd48d9936109916a83892056a55286c9c14 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 25 Mar 2015 21:35:06 +0100 Subject: [PATCH 02/42] [IMP] Expand AUTHORS --- mrp_production_note/__openerp__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mrp_production_note/__openerp__.py b/mrp_production_note/__openerp__.py index 7cfe73aac3b..c133eb98e66 100644 --- a/mrp_production_note/__openerp__.py +++ b/mrp_production_note/__openerp__.py @@ -22,7 +22,9 @@ "depends": [ "mrp", ], - "author": "OdooMRP team", + "author": "OdooMRP team," + "AvanzOSC," + "Serv. Tecnol. Avanzados - Pedro M. Baeza", "website": "http://www.odoomrp.com", "contributors": [ "Oihane Crucelaegui ", From f6f87fd17b0bbc948c44eef488248041facc88cb Mon Sep 17 00:00:00 2001 From: oihane Date: Mon, 27 Apr 2015 09:33:10 +0200 Subject: [PATCH 03/42] [MOD] Changed email --- mrp_production_note/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_production_note/__openerp__.py b/mrp_production_note/__openerp__.py index c133eb98e66..75e4d7697da 100644 --- a/mrp_production_note/__openerp__.py +++ b/mrp_production_note/__openerp__.py @@ -29,7 +29,7 @@ "contributors": [ "Oihane Crucelaegui ", "Pedro M. Baeza ", - "Ana Juaristi " + "Ana Juaristi " ], "category": "Tools", "data": [ From 9ae159b9058184488c40656cf8c2978c54b12761 Mon Sep 17 00:00:00 2001 From: oihane Date: Mon, 22 Jun 2015 10:14:41 +0200 Subject: [PATCH 04/42] [IMP] Adecuate to OCA --- mrp_production_note/README.rst | 44 +++++++++++++++++++- mrp_production_note/__init__.py | 15 +------ mrp_production_note/__openerp__.py | 18 ++++---- mrp_production_note/models/__init__.py | 15 +------ mrp_production_note/models/mrp_production.py | 15 +------ 5 files changed, 55 insertions(+), 52 deletions(-) diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst index ec2bdd51ecc..a9d2a2b34f0 100644 --- a/mrp_production_note/README.rst +++ b/mrp_production_note/README.rst @@ -1,2 +1,42 @@ -This module adds remark field to: - * Manufacturing orders +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +Notes in production orders +========================== + +This module creates in production orders a new field to add notes + + +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 +`here `_. + + +Credits +======= + +Contributors +------------ + +* Oihane Crucelaegui +* Pedro M. Baeza +* Ana Juaristi + +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 http://odoo-community.org. \ No newline at end of file diff --git a/mrp_production_note/__init__.py b/mrp_production_note/__init__.py index 7fc7c09f9b0..054c8853d83 100644 --- a/mrp_production_note/__init__.py +++ b/mrp_production_note/__init__.py @@ -1,19 +1,6 @@ # -*- encoding: utf-8 -*- ############################################################################## -# -# 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 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 http://www.gnu.org/licenses/. -# +# For copyright and license notices, see __openerp__.py file in root directory ############################################################################## from . import models diff --git a/mrp_production_note/__openerp__.py b/mrp_production_note/__openerp__.py index 75e4d7697da..1cb387d8919 100644 --- a/mrp_production_note/__openerp__.py +++ b/mrp_production_note/__openerp__.py @@ -19,19 +19,21 @@ { "name": "Notes in production orders", "version": "1.0", - "depends": [ - "mrp", - ], - "author": "OdooMRP team," - "AvanzOSC," - "Serv. Tecnol. Avanzados - Pedro M. Baeza", + "category": "Tools", + "license": "AGPL-3", + "author": "OdooMRP team, " + "AvanzOSC, " + "Serv. Tecnol. Avanzados - Pedro M. Baeza, " + "Odoo Community Association (OCA)", "website": "http://www.odoomrp.com", "contributors": [ "Oihane Crucelaegui ", "Pedro M. Baeza ", - "Ana Juaristi " + "Ana Juaristi ", + ], + "depends": [ + "mrp", ], - "category": "Tools", "data": [ "views/mrp_production_view.xml", ], diff --git a/mrp_production_note/models/__init__.py b/mrp_production_note/models/__init__.py index a670e46778c..1edfea84629 100644 --- a/mrp_production_note/models/__init__.py +++ b/mrp_production_note/models/__init__.py @@ -1,19 +1,6 @@ # -*- encoding: utf-8 -*- ############################################################################## -# -# 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 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 http://www.gnu.org/licenses/. -# +# For copyright and license notices, see __openerp__.py file in root directory ############################################################################## from . import mrp_production diff --git a/mrp_production_note/models/mrp_production.py b/mrp_production_note/models/mrp_production.py index 3879571de8e..c261bf3ba06 100644 --- a/mrp_production_note/models/mrp_production.py +++ b/mrp_production_note/models/mrp_production.py @@ -1,19 +1,6 @@ # -*- encoding: utf-8 -*- ############################################################################## -# -# 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 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 http://www.gnu.org/licenses/. -# +# For copyright and license notices, see __openerp__.py file in root directory ############################################################################## from openerp import models, fields From 8ce22b6aed8960755ee3298cb1956170ca88aec8 Mon Sep 17 00:00:00 2001 From: oihane Date: Tue, 23 Jun 2015 11:35:52 +0200 Subject: [PATCH 05/42] [IMP] README minor changes --- mrp_production_note/README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst index a9d2a2b34f0..c938f77c58d 100644 --- a/mrp_production_note/README.rst +++ b/mrp_production_note/README.rst @@ -4,7 +4,7 @@ Notes in production orders ========================== -This module creates in production orders a new field to add notes +This module creates in production orders a new field to add notes in rich text format Bug Tracker From 9c19a8bb6ef343322d7f6c73147c92ec21da82fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Fri, 9 Oct 2015 10:01:47 +0200 Subject: [PATCH 06/42] [UPD] prefix versions with 8.0 --- mrp_production_note/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_production_note/__openerp__.py b/mrp_production_note/__openerp__.py index 1cb387d8919..724690d12c7 100644 --- a/mrp_production_note/__openerp__.py +++ b/mrp_production_note/__openerp__.py @@ -18,7 +18,7 @@ { "name": "Notes in production orders", - "version": "1.0", + "version": "8.0.1.0.0", "category": "Tools", "license": "AGPL-3", "author": "OdooMRP team, " From 38d037aea27413191de902705e8bf1412af850b9 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 14 Oct 2015 03:30:18 +0200 Subject: [PATCH 07/42] [MIG] Make modules uninstallable --- mrp_production_note/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_production_note/__openerp__.py b/mrp_production_note/__openerp__.py index 724690d12c7..d9efd2e6941 100644 --- a/mrp_production_note/__openerp__.py +++ b/mrp_production_note/__openerp__.py @@ -37,5 +37,5 @@ "data": [ "views/mrp_production_view.xml", ], - "installable": True, + 'installable': False, } From 1521e261b8ffc032f7d8fe0a1328b41396b1ba1c Mon Sep 17 00:00:00 2001 From: Oihane Crucelaegui Date: Thu, 14 Jan 2016 19:24:56 +0100 Subject: [PATCH 08/42] [MIG] Make mrp_production_note installable in v9 --- mrp_production_note/README.rst | 15 ++++++++-- mrp_production_note/__init__.py | 7 ++--- mrp_production_note/__openerp__.py | 24 ++++----------- mrp_production_note/models/__init__.py | 7 ++--- mrp_production_note/models/mrp_production.py | 9 +++--- .../views/mrp_production_view.xml | 30 +++++++++---------- 6 files changed, 41 insertions(+), 51 deletions(-) diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst index c938f77c58d..586378ba490 100644 --- a/mrp_production_note/README.rst +++ b/mrp_production_note/README.rst @@ -1,11 +1,21 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg :alt: License: AGPL-3 +========================== Notes in production orders ========================== This module creates in production orders a new field to add notes in rich text format +Usage +===== + +* Go to Manufacturing > Manufacturing > Manufacturing Orders +* Edit an existing MO and fill in the Notes field on tab Notes + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/129/9.0 Bug Tracker =========== @@ -13,8 +23,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 -`here `_. - +`here `_. Credits ======= @@ -39,4 +48,4 @@ 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 http://odoo-community.org. \ No newline at end of file +To contribute to this module, please visit http://odoo-community.org. diff --git a/mrp_production_note/__init__.py b/mrp_production_note/__init__.py index 054c8853d83..6ea76f9a8b8 100644 --- a/mrp_production_note/__init__.py +++ b/mrp_production_note/__init__.py @@ -1,6 +1,5 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# For copyright and license notices, see __openerp__.py file in root directory -############################################################################## +# -*- coding: utf-8 -*- +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import models diff --git a/mrp_production_note/__openerp__.py b/mrp_production_note/__openerp__.py index d9efd2e6941..cbc56e16d37 100644 --- a/mrp_production_note/__openerp__.py +++ b/mrp_production_note/__openerp__.py @@ -1,24 +1,10 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# 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 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 http://www.gnu.org/licenses/. -# -############################################################################## +# -*- coding: utf-8 -*- +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html { "name": "Notes in production orders", - "version": "8.0.1.0.0", + "version": "9.0.1.0.0", "category": "Tools", "license": "AGPL-3", "author": "OdooMRP team, " @@ -37,5 +23,5 @@ "data": [ "views/mrp_production_view.xml", ], - 'installable': False, + 'installable': True, } diff --git a/mrp_production_note/models/__init__.py b/mrp_production_note/models/__init__.py index 1edfea84629..82baeaa4acf 100644 --- a/mrp_production_note/models/__init__.py +++ b/mrp_production_note/models/__init__.py @@ -1,6 +1,5 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# For copyright and license notices, see __openerp__.py file in root directory -############################################################################## +# -*- coding: utf-8 -*- +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import mrp_production diff --git a/mrp_production_note/models/mrp_production.py b/mrp_production_note/models/mrp_production.py index c261bf3ba06..b8dc141568b 100644 --- a/mrp_production_note/models/mrp_production.py +++ b/mrp_production_note/models/mrp_production.py @@ -1,9 +1,8 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# For copyright and license notices, see __openerp__.py file in root directory -############################################################################## +# -*- coding: utf-8 -*- +# © 2015 Oihane Crucelaegui - AvanzOSC +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html -from openerp import models, fields +from openerp import fields, models class MrpProduction(models.Model): diff --git a/mrp_production_note/views/mrp_production_view.xml b/mrp_production_note/views/mrp_production_view.xml index fa719bfc7d0..2ed18266a5b 100644 --- a/mrp_production_note/views/mrp_production_view.xml +++ b/mrp_production_note/views/mrp_production_view.xml @@ -1,17 +1,15 @@ - - - - mrp.production.form - mrp.production - - - - - - - - - - - + + + mrp.production.notes.form + mrp.production + + + + + + + + + + From 09f0a5318c1ec5091cdf3b76c672d3da9b275c2b Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 23 Jan 2016 15:25:37 -0500 Subject: [PATCH 09/42] OCA Transbot updated translations from Transifex (+4 squashed commit) Squashed commit: [22ba5c71] [FIX] remove en.po that was erroneously created by transbot [c9110357] OCA Transbot updated translations from Transifex [1ecefefc] OCA Transbot updated translations from Transifex [316efe48] OCA Transbot updated translations from Transifex --- mrp_production_note/i18n/de.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/es.po | 25 +++++++++++++------------ mrp_production_note/i18n/pt_BR.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/zh_CN.po | 30 ++++++++++++++++++++++++++++++ 4 files changed, 103 insertions(+), 12 deletions(-) create mode 100644 mrp_production_note/i18n/de.po create mode 100644 mrp_production_note/i18n/pt_BR.po create mode 100644 mrp_production_note/i18n/zh_CN.po diff --git a/mrp_production_note/i18n/de.po b/mrp_production_note/i18n/de.po new file mode 100644 index 00000000000..0e040ff11e2 --- /dev/null +++ b/mrp_production_note/i18n/de.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: manufacture (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-19 01:38+0000\n" +"PO-Revision-Date: 2016-03-11 15:31+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-manufacture-9-0/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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Fertigungsautrag" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Hinweise" diff --git a/mrp_production_note/i18n/es.po b/mrp_production_note/i18n/es.po index d49c7defcb7..09a6e884ac8 100644 --- a/mrp_production_note/i18n/es.po +++ b/mrp_production_note/i18n/es.po @@ -1,19 +1,21 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * mrp_production_note -# +# * mrp_production_note +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0rc1\n" +"Project-Id-Version: manufacture (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-08-04 08:51+0000\n" -"PO-Revision-Date: 2014-08-04 10:52+0100\n" -"Last-Translator: Oihane \n" -"Language-Team: \n" +"POT-Creation-Date: 2016-01-19 01:38+0000\n" +"PO-Revision-Date: 2016-01-18 21:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-manufacture-9-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: \n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production @@ -21,8 +23,7 @@ msgid "Manufacturing Order" msgstr "Órden de producción" #. module: mrp_production_note -#: view:mrp.production:0 -#: field:mrp.production,notes:0 +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Notas" - diff --git a/mrp_production_note/i18n/pt_BR.po b/mrp_production_note/i18n/pt_BR.po new file mode 100644 index 00000000000..2a5fdb596aa --- /dev/null +++ b/mrp_production_note/i18n/pt_BR.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Claudio Araujo Santos , 2016 +msgid "" +msgstr "" +"Project-Id-Version: manufacture (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-03 06:08+0000\n" +"PO-Revision-Date: 2016-07-07 19:44+0000\n" +"Last-Translator: Claudio Araujo Santos \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-manufacture-9-0/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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Ordem de fabricação" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notas" diff --git a/mrp_production_note/i18n/zh_CN.po b/mrp_production_note/i18n/zh_CN.po new file mode 100644 index 00000000000..560dd812fc9 --- /dev/null +++ b/mrp_production_note/i18n/zh_CN.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Jeffery Chenn , 2016 +msgid "" +msgstr "" +"Project-Id-Version: manufacture (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-07 07:44+0000\n" +"PO-Revision-Date: 2016-09-04 05:45+0000\n" +"Last-Translator: Jeffery Chenn \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-manufacture-9-0/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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "制造订单" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "备注" From 061a5ab16943300bc6dd631b50a98660f249717d Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:57:42 +0200 Subject: [PATCH 10/42] [MIG] Make modules uninstallable --- mrp_production_note/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_production_note/__openerp__.py b/mrp_production_note/__openerp__.py index cbc56e16d37..1591581e1de 100644 --- a/mrp_production_note/__openerp__.py +++ b/mrp_production_note/__openerp__.py @@ -23,5 +23,5 @@ "data": [ "views/mrp_production_view.xml", ], - 'installable': True, + 'installable': False, } From bfe86ee5f5d1d32f02a819af900cf09aebabd686 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:57:44 +0200 Subject: [PATCH 11/42] [MIG] Rename manifest files --- mrp_production_note/{__openerp__.py => __manifest__.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename mrp_production_note/{__openerp__.py => __manifest__.py} (100%) diff --git a/mrp_production_note/__openerp__.py b/mrp_production_note/__manifest__.py similarity index 100% rename from mrp_production_note/__openerp__.py rename to mrp_production_note/__manifest__.py From d96013a40a99928067b0150e656c41782075d3ef Mon Sep 17 00:00:00 2001 From: MonsieurB Date: Mon, 6 Feb 2017 11:42:57 +0100 Subject: [PATCH 12/42] migrate V10 --- mrp_production_note/__manifest__.py | 4 ++-- mrp_production_note/models/mrp_production.py | 2 +- mrp_production_note/views/mrp_production_view.xml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mrp_production_note/__manifest__.py b/mrp_production_note/__manifest__.py index 1591581e1de..fafd21f9af3 100644 --- a/mrp_production_note/__manifest__.py +++ b/mrp_production_note/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Notes in production orders", - "version": "9.0.1.0.0", + "version": "10.0.1.0.0", "category": "Tools", "license": "AGPL-3", "author": "OdooMRP team, " @@ -23,5 +23,5 @@ "data": [ "views/mrp_production_view.xml", ], - 'installable': False, + 'installable': True, } diff --git a/mrp_production_note/models/mrp_production.py b/mrp_production_note/models/mrp_production.py index b8dc141568b..048b41645fe 100644 --- a/mrp_production_note/models/mrp_production.py +++ b/mrp_production_note/models/mrp_production.py @@ -2,7 +2,7 @@ # © 2015 Oihane Crucelaegui - AvanzOSC # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html -from openerp import fields, models +from odoo import fields, models class MrpProduction(models.Model): diff --git a/mrp_production_note/views/mrp_production_view.xml b/mrp_production_note/views/mrp_production_view.xml index 2ed18266a5b..2b5c6f5e774 100644 --- a/mrp_production_note/views/mrp_production_view.xml +++ b/mrp_production_note/views/mrp_production_view.xml @@ -5,7 +5,7 @@ mrp.production - + From a99f4879cfdd81380040418b9b0f39a4c34d920a Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 6 May 2017 05:25:40 +0200 Subject: [PATCH 13/42] OCA Transbot updated translations from Transifex (+5 squashed commit) Squashed commit: [60213dee] OCA Transbot updated translations from Transifex [8ad1474d] OCA Transbot updated translations from Transifex [0565e173] OCA Transbot updated translations from Transifex [287c9b5b] OCA Transbot updated translations from Transifex [48e131ec] OCA Transbot updated translations from Transifex --- mrp_production_note/i18n/es_MX.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/fi.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/fr.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/gl.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/hr.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/hr_HR.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/it.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/lt.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/nl_NL.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/ro.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/sl.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/tr.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/tr_TR.po | 30 ++++++++++++++++++++++++++++++ mrp_production_note/i18n/vi_VN.po | 30 ++++++++++++++++++++++++++++++ 14 files changed, 420 insertions(+) create mode 100644 mrp_production_note/i18n/es_MX.po create mode 100644 mrp_production_note/i18n/fi.po create mode 100644 mrp_production_note/i18n/fr.po create mode 100644 mrp_production_note/i18n/gl.po create mode 100644 mrp_production_note/i18n/hr.po create mode 100644 mrp_production_note/i18n/hr_HR.po create mode 100644 mrp_production_note/i18n/it.po create mode 100644 mrp_production_note/i18n/lt.po create mode 100644 mrp_production_note/i18n/nl_NL.po create mode 100644 mrp_production_note/i18n/ro.po create mode 100644 mrp_production_note/i18n/sl.po create mode 100644 mrp_production_note/i18n/tr.po create mode 100644 mrp_production_note/i18n/tr_TR.po create mode 100644 mrp_production_note/i18n/vi_VN.po diff --git a/mrp_production_note/i18n/es_MX.po b/mrp_production_note/i18n/es_MX.po new file mode 100644 index 00000000000..f856fa3ee37 --- /dev/null +++ b/mrp_production_note/i18n/es_MX.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Orden de fabricación" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "" diff --git a/mrp_production_note/i18n/fi.po b/mrp_production_note/i18n/fi.po new file mode 100644 index 00000000000..574ad34a76d --- /dev/null +++ b/mrp_production_note/i18n/fi.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Huomautukset" diff --git a/mrp_production_note/i18n/fr.po b/mrp_production_note/i18n/fr.po new file mode 100644 index 00000000000..747ff41442f --- /dev/null +++ b/mrp_production_note/i18n/fr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Quentin THEURET , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-10 07:00+0000\n" +"PO-Revision-Date: 2017-06-10 07:00+0000\n" +"Last-Translator: Quentin THEURET , 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Ordre de fabrication" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notes" diff --git a/mrp_production_note/i18n/gl.po b/mrp_production_note/i18n/gl.po new file mode 100644 index 00000000000..9f0a49d6985 --- /dev/null +++ b/mrp_production_note/i18n/gl.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Orde de fabricación" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notas" diff --git a/mrp_production_note/i18n/hr.po b/mrp_production_note/i18n/hr.po new file mode 100644 index 00000000000..3e211d6126a --- /dev/null +++ b/mrp_production_note/i18n/hr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+0000\n" +"Last-Translator: OCA Transbot , 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Proizvodni nalog" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Bilješke" diff --git a/mrp_production_note/i18n/hr_HR.po b/mrp_production_note/i18n/hr_HR.po new file mode 100644 index 00000000000..09277dcee85 --- /dev/null +++ b/mrp_production_note/i18n/hr_HR.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 20:18+0000\n" +"PO-Revision-Date: 2017-05-01 20:18+0000\n" +"Last-Translator: Bole , 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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Proizvodni nalog" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Bilješke" diff --git a/mrp_production_note/i18n/it.po b/mrp_production_note/i18n/it.po new file mode 100644 index 00000000000..ef0fd383131 --- /dev/null +++ b/mrp_production_note/i18n/it.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Note" diff --git a/mrp_production_note/i18n/lt.po b/mrp_production_note/i18n/lt.po new file mode 100644 index 00000000000..d6a55fdd1c2 --- /dev/null +++ b/mrp_production_note/i18n/lt.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Viktoras Norkus , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 08:02+0000\n" +"PO-Revision-Date: 2018-01-16 08:02+0000\n" +"Last-Translator: Viktoras Norkus , 2018\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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Gamybos užsakymas" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Užrašai" diff --git a/mrp_production_note/i18n/nl_NL.po b/mrp_production_note/i18n/nl_NL.po new file mode 100644 index 00000000000..e37098758d9 --- /dev/null +++ b/mrp_production_note/i18n/nl_NL.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-06 03:32+0000\n" +"PO-Revision-Date: 2017-05-06 03:32+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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Productieorder" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notities" diff --git a/mrp_production_note/i18n/ro.po b/mrp_production_note/i18n/ro.po new file mode 100644 index 00000000000..4d678f49b36 --- /dev/null +++ b/mrp_production_note/i18n/ro.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Comandă fabricație" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Note" diff --git a/mrp_production_note/i18n/sl.po b/mrp_production_note/i18n/sl.po new file mode 100644 index 00000000000..adf0669159c --- /dev/null +++ b/mrp_production_note/i18n/sl.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Proizvodni nalog" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Opombe" diff --git a/mrp_production_note/i18n/tr.po b/mrp_production_note/i18n/tr.po new file mode 100644 index 00000000000..f2cb7485890 --- /dev/null +++ b/mrp_production_note/i18n/tr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Üretim emri" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notlar" diff --git a/mrp_production_note/i18n/tr_TR.po b/mrp_production_note/i18n/tr_TR.po new file mode 100644 index 00000000000..794b4cefd95 --- /dev/null +++ b/mrp_production_note/i18n/tr_TR.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 03:44+0000\n" +"PO-Revision-Date: 2017-11-28 03:44+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "Notlar" diff --git a/mrp_production_note/i18n/vi_VN.po b/mrp_production_note/i18n/vi_VN.po new file mode 100644 index 00000000000..46cd063a9b0 --- /dev/null +++ b/mrp_production_note/i18n/vi_VN.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-12 03:48+0000\n" +"PO-Revision-Date: 2018-02-12 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "Lệnh sản xuất" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "" From f01dc0038102a684502d6308aa82d5cff86b45b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Fri, 15 Jun 2018 23:31:22 +0200 Subject: [PATCH 14/42] remove obsolete .pot files [ci skip] --- .../i18n/mrp_production_notes.pot | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 mrp_production_note/i18n/mrp_production_notes.pot diff --git a/mrp_production_note/i18n/mrp_production_notes.pot b/mrp_production_note/i18n/mrp_production_notes.pot deleted file mode 100644 index bd1417aac16..00000000000 --- a/mrp_production_note/i18n/mrp_production_notes.pot +++ /dev/null @@ -1,28 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * mrp_production_note -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0rc1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-08-04 08:50+0000\n" -"PO-Revision-Date: 2014-08-04 08:50+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "" - -#. module: mrp_production_note -#: view:mrp.production:0 -#: field:mrp.production,notes:0 -msgid "Notes" -msgstr "" - From 7106f31b3cf989c90d4a2505ebd6e8d82193f293 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 17:16:37 +0000 Subject: [PATCH 15/42] [UPD] Update mrp_production_note.pot --- mrp_production_note/i18n/de.po | 7 ++--- mrp_production_note/i18n/es.po | 7 ++--- mrp_production_note/i18n/es_MX.po | 7 ++--- mrp_production_note/i18n/fi.po | 4 +-- mrp_production_note/i18n/fr.po | 4 +-- mrp_production_note/i18n/gl.po | 4 +-- mrp_production_note/i18n/hr.po | 7 ++--- mrp_production_note/i18n/hr_HR.po | 10 ++++--- mrp_production_note/i18n/it.po | 4 +-- mrp_production_note/i18n/lt.po | 7 ++--- .../i18n/mrp_production_note.pot | 26 +++++++++++++++++++ mrp_production_note/i18n/nl_NL.po | 7 ++--- mrp_production_note/i18n/pt_BR.po | 7 ++--- mrp_production_note/i18n/ro.po | 7 ++--- mrp_production_note/i18n/sl.po | 7 ++--- mrp_production_note/i18n/tr.po | 4 +-- mrp_production_note/i18n/tr_TR.po | 7 ++--- mrp_production_note/i18n/vi_VN.po | 7 ++--- mrp_production_note/i18n/zh_CN.po | 7 ++--- 19 files changed, 90 insertions(+), 50 deletions(-) create mode 100644 mrp_production_note/i18n/mrp_production_note.pot diff --git a/mrp_production_note/i18n/de.po b/mrp_production_note/i18n/de.po index 0e040ff11e2..05a55faf1fb 100644 --- a/mrp_production_note/i18n/de.po +++ b/mrp_production_note/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # Rudolf Schnapka , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-01-19 01:38+0000\n" "PO-Revision-Date: 2016-03-11 15:31+0000\n" "Last-Translator: Rudolf Schnapka \n" -"Language-Team: German (http://www.transifex.com/oca/OCA-manufacture-9-0/language/de/)\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-manufacture-9-0/" +"language/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: mrp_production_note diff --git a/mrp_production_note/i18n/es.po b/mrp_production_note/i18n/es.po index 09a6e884ac8..24aac29d4cc 100644 --- a/mrp_production_note/i18n/es.po +++ b/mrp_production_note/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-01-19 01:38+0000\n" "PO-Revision-Date: 2016-01-18 21:23+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-manufacture-9-0/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-manufacture-9-0/" +"language/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: mrp_production_note diff --git a/mrp_production_note/i18n/es_MX.po b/mrp_production_note/i18n/es_MX.po index f856fa3ee37..3ff51bc6f1e 100644 --- a/mrp_production_note/i18n/es_MX.po +++ b/mrp_production_note/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-12 03:48+0000\n" "PO-Revision-Date: 2018-02-12 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\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: mrp_production_note diff --git a/mrp_production_note/i18n/fi.po b/mrp_production_note/i18n/fi.po index 574ad34a76d..b274109ff56 100644 --- a/mrp_production_note/i18n/fi.po +++ b/mrp_production_note/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-28 03:44+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: mrp_production_note diff --git a/mrp_production_note/i18n/fr.po b/mrp_production_note/i18n/fr.po index 747ff41442f..383e5811f89 100644 --- a/mrp_production_note/i18n/fr.po +++ b/mrp_production_note/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # Quentin THEURET , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-06-10 07:00+0000\n" "Last-Translator: Quentin THEURET , 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: mrp_production_note diff --git a/mrp_production_note/i18n/gl.po b/mrp_production_note/i18n/gl.po index 9f0a49d6985..b9b386c770a 100644 --- a/mrp_production_note/i18n/gl.po +++ b/mrp_production_note/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-12 03:48+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: mrp_production_note diff --git a/mrp_production_note/i18n/hr.po b/mrp_production_note/i18n/hr.po index 3e211d6126a..be5a452b394 100644 --- a/mrp_production_note/i18n/hr.po +++ b/mrp_production_note/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-12 03:48+0000\n" "Last-Translator: OCA Transbot , 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: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production diff --git a/mrp_production_note/i18n/hr_HR.po b/mrp_production_note/i18n/hr_HR.po index 09277dcee85..f1f10a914e6 100644 --- a/mrp_production_note/i18n/hr_HR.po +++ b/mrp_production_note/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # Bole , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-05-01 20:18+0000\n" "PO-Revision-Date: 2017-05-01 20:18+0000\n" "Last-Translator: Bole , 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: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production diff --git a/mrp_production_note/i18n/it.po b/mrp_production_note/i18n/it.po index ef0fd383131..9dd1b0f98e2 100644 --- a/mrp_production_note/i18n/it.po +++ b/mrp_production_note/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-11-28 03:44+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: mrp_production_note diff --git a/mrp_production_note/i18n/lt.po b/mrp_production_note/i18n/lt.po index d6a55fdd1c2..ac620ccdf9f 100644 --- a/mrp_production_note/i18n/lt.po +++ b/mrp_production_note/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # Viktoras Norkus , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-16 08:02+0000\n" "Last-Translator: Viktoras Norkus , 2018\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: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production diff --git a/mrp_production_note/i18n/mrp_production_note.pot b/mrp_production_note/i18n/mrp_production_note.pot new file mode 100644 index 00000000000..3a75d20da12 --- /dev/null +++ b/mrp_production_note/i18n/mrp_production_note.pot @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_note +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.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: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: mrp_production_note +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes +#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" +msgstr "" + diff --git a/mrp_production_note/i18n/nl_NL.po b/mrp_production_note/i18n/nl_NL.po index e37098758d9..3e7599fadbf 100644 --- a/mrp_production_note/i18n/nl_NL.po +++ b/mrp_production_note/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-06 03:32+0000\n" "PO-Revision-Date: 2017-05-06 03:32+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: mrp_production_note diff --git a/mrp_production_note/i18n/pt_BR.po b/mrp_production_note/i18n/pt_BR.po index 2a5fdb596aa..c18ceaf27da 100644 --- a/mrp_production_note/i18n/pt_BR.po +++ b/mrp_production_note/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # Claudio Araujo Santos , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-07-03 06:08+0000\n" "PO-Revision-Date: 2016-07-07 19:44+0000\n" "Last-Translator: Claudio Araujo Santos \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-manufacture-9-0/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-" +"manufacture-9-0/language/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: mrp_production_note diff --git a/mrp_production_note/i18n/ro.po b/mrp_production_note/i18n/ro.po index 4d678f49b36..3e3e4a45981 100644 --- a/mrp_production_note/i18n/ro.po +++ b/mrp_production_note/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-12 03:48+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: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production diff --git a/mrp_production_note/i18n/sl.po b/mrp_production_note/i18n/sl.po index adf0669159c..0bbb3396963 100644 --- a/mrp_production_note/i18n/sl.po +++ b/mrp_production_note/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-12 03:48+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: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production diff --git a/mrp_production_note/i18n/tr.po b/mrp_production_note/i18n/tr.po index f2cb7485890..19941ad3d1d 100644 --- a/mrp_production_note/i18n/tr.po +++ b/mrp_production_note/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-12 03:48+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: mrp_production_note diff --git a/mrp_production_note/i18n/tr_TR.po b/mrp_production_note/i18n/tr_TR.po index 794b4cefd95..c983872d4cd 100644 --- a/mrp_production_note/i18n/tr_TR.po +++ b/mrp_production_note/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-11-28 03:44+0000\n" "PO-Revision-Date: 2017-11-28 03:44+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mrp_production_note diff --git a/mrp_production_note/i18n/vi_VN.po b/mrp_production_note/i18n/vi_VN.po index 46cd063a9b0..a8034c23a5a 100644 --- a/mrp_production_note/i18n/vi_VN.po +++ b/mrp_production_note/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-12 03:48+0000\n" "PO-Revision-Date: 2018-02-12 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mrp_production_note diff --git a/mrp_production_note/i18n/zh_CN.po b/mrp_production_note/i18n/zh_CN.po index 560dd812fc9..fe6c4629f1d 100644 --- a/mrp_production_note/i18n/zh_CN.po +++ b/mrp_production_note/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mrp_production_note -# +# # Translators: # Jeffery Chenn , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-08-07 07:44+0000\n" "PO-Revision-Date: 2016-09-04 05:45+0000\n" "Last-Translator: Jeffery Chenn \n" -"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-manufacture-9-0/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-" +"manufacture-9-0/language/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: mrp_production_note From 8fdb79e6e15d6afd957ab26c4c9f39bf347f8abc Mon Sep 17 00:00:00 2001 From: Maria Sparenberg Date: Sun, 9 Dec 2018 16:15:05 +0000 Subject: [PATCH 16/42] Translated using Weblate (German) Currently translated at 100.0% (2 of 2 strings) Translation: manufacture-10.0/manufacture-10.0-mrp_production_note Translate-URL: https://translation.odoo-community.org/projects/manufacture-10-0/manufacture-10-0-mrp_production_note/de/ --- mrp_production_note/i18n/de.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/mrp_production_note/i18n/de.po b/mrp_production_note/i18n/de.po index 05a55faf1fb..381d26922b9 100644 --- a/mrp_production_note/i18n/de.po +++ b/mrp_production_note/i18n/de.po @@ -9,20 +9,21 @@ msgstr "" "Project-Id-Version: manufacture (9.0)\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-01-19 01:38+0000\n" -"PO-Revision-Date: 2016-03-11 15:31+0000\n" -"Last-Translator: Rudolf Schnapka \n" +"PO-Revision-Date: 2018-12-10 11:58+0000\n" +"Last-Translator: Maria Sparenberg \n" "Language-Team: German (http://www.transifex.com/oca/OCA-manufacture-9-0/" "language/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.3\n" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production msgid "Manufacturing Order" -msgstr "Fertigungsautrag" +msgstr "Fertigungsauftrag" #. module: mrp_production_note #: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes From ed80be85cc0c06944c251b2b3c4e330e8c38a816 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 3 Apr 2019 03:00:30 +0000 Subject: [PATCH 17/42] [ADD] icon.png --- mrp_production_note/static/description/icon.png | Bin 0 -> 9455 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 mrp_production_note/static/description/icon.png diff --git a/mrp_production_note/static/description/icon.png b/mrp_production_note/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 From 19a8f73a62d9eb7254833e226f2c220de4d6995f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20B=C3=A9lorgey?= Date: Sat, 18 Jan 2020 15:37:14 +0100 Subject: [PATCH 18/42] [MIG] mrp_production_note: Migration to 12.0 --- mrp_production_note/README.rst | 70 ++- mrp_production_note/__init__.py | 3 +- mrp_production_note/__manifest__.py | 16 +- mrp_production_note/models/__init__.py | 3 +- mrp_production_note/models/mrp_production.py | 3 +- mrp_production_note/readme/CONTRIBUTORS.rst | 4 + mrp_production_note/readme/DESCRIPTION.rst | 1 + mrp_production_note/readme/USAGE.rst | 5 + .../static/description/index.html | 434 ++++++++++++++++++ 9 files changed, 505 insertions(+), 34 deletions(-) create mode 100644 mrp_production_note/readme/CONTRIBUTORS.rst create mode 100644 mrp_production_note/readme/DESCRIPTION.rst create mode 100644 mrp_production_note/readme/USAGE.rst create mode 100644 mrp_production_note/static/description/index.html diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst index 586378ba490..328ecdbe3f8 100644 --- a/mrp_production_note/README.rst +++ b/mrp_production_note/README.rst @@ -1,51 +1,87 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License: AGPL-3 - ========================== Notes in production orders ========================== -This module creates in production orders a new field to add notes in rich text format +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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%2Fmanufacture-lightgray.png?logo=github + :target: https://github.com/OCA/manufacture/tree/12.0-mig-mrp_production_note/mrp_production_note + :alt: OCA/manufacture +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/manufacture-12-0-mig-mrp_production_note/manufacture-12-0-mig-mrp_production_note-mrp_production_note + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/129/12.0-mig-mrp_production_note + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module creates in production orders a new field to add notes in rich text format. + +**Table of contents** + +.. contents:: + :local: Usage ===== -* Go to Manufacturing > Manufacturing > Manufacturing Orders -* Edit an existing MO and fill in the Notes field on tab Notes +To use this module, you need to: -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/129/9.0 +#. Go to *Manufacturing > Operations > Manufacturing Orders*. +#. Edit an existing MO. +#. Fill in the field on tab "Notes". 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 -`here `_. +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 +~~~~~~~ + +* OdooMRP team +* AvanzOSC +* Serv. Tecnol. Avanzados - Pedro M. Baeza + Contributors ------------- +~~~~~~~~~~~~ * Oihane Crucelaegui * Pedro M. Baeza * Ana Juaristi +* Laurent Bélorgey + +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 http://odoo-community.org. +This module is part of the `OCA/manufacture `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/mrp_production_note/__init__.py b/mrp_production_note/__init__.py index 6ea76f9a8b8..d3ee04cbda1 100644 --- a/mrp_production_note/__init__.py +++ b/mrp_production_note/__init__.py @@ -1,5 +1,4 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html from . import models diff --git a/mrp_production_note/__manifest__.py b/mrp_production_note/__manifest__.py index fafd21f9af3..f65f1d3998c 100644 --- a/mrp_production_note/__manifest__.py +++ b/mrp_production_note/__manifest__.py @@ -1,27 +1,21 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html { "name": "Notes in production orders", - "version": "10.0.1.0.0", - "category": "Tools", + "version": "12.0.1.0.0", + "category": "Manufacturing", "license": "AGPL-3", "author": "OdooMRP team, " "AvanzOSC, " "Serv. Tecnol. Avanzados - Pedro M. Baeza, " "Odoo Community Association (OCA)", - "website": "http://www.odoomrp.com", - "contributors": [ - "Oihane Crucelaegui ", - "Pedro M. Baeza ", - "Ana Juaristi ", - ], + "website": "https://github.com/OCA/manufacture", "depends": [ "mrp", ], "data": [ "views/mrp_production_view.xml", ], - 'installable': True, + "installable": True, } diff --git a/mrp_production_note/models/__init__.py b/mrp_production_note/models/__init__.py index 82baeaa4acf..81dc6002534 100644 --- a/mrp_production_note/models/__init__.py +++ b/mrp_production_note/models/__init__.py @@ -1,5 +1,4 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html from . import mrp_production diff --git a/mrp_production_note/models/mrp_production.py b/mrp_production_note/models/mrp_production.py index 048b41645fe..4608711ff90 100644 --- a/mrp_production_note/models/mrp_production.py +++ b/mrp_production_note/models/mrp_production.py @@ -1,6 +1,5 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html from odoo import fields, models diff --git a/mrp_production_note/readme/CONTRIBUTORS.rst b/mrp_production_note/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000000..a6b8c047f8f --- /dev/null +++ b/mrp_production_note/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* Oihane Crucelaegui +* Pedro M. Baeza +* Ana Juaristi +* Laurent Bélorgey diff --git a/mrp_production_note/readme/DESCRIPTION.rst b/mrp_production_note/readme/DESCRIPTION.rst new file mode 100644 index 00000000000..188c58eef08 --- /dev/null +++ b/mrp_production_note/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module creates in production orders a new field to add notes in rich text format. diff --git a/mrp_production_note/readme/USAGE.rst b/mrp_production_note/readme/USAGE.rst new file mode 100644 index 00000000000..5d52f968cc1 --- /dev/null +++ b/mrp_production_note/readme/USAGE.rst @@ -0,0 +1,5 @@ +To use this module, you need to: + +#. Go to *Manufacturing > Operations > Manufacturing Orders*. +#. Edit an existing MO. +#. Fill in the field on tab "Notes". diff --git a/mrp_production_note/static/description/index.html b/mrp_production_note/static/description/index.html new file mode 100644 index 00000000000..a8f78c0aa9c --- /dev/null +++ b/mrp_production_note/static/description/index.html @@ -0,0 +1,434 @@ + + + + + + +Notes in production orders + + + +
+

Notes in production orders

+ + +

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

+

This module creates in production orders a new field to add notes in rich text format.

+

Table of contents

+ +
+

Usage

+

To use this module, you need to:

+
    +
  1. Go to Manufacturing > Operations > Manufacturing Orders.
  2. +
  3. Edit an existing MO.
  4. +
  5. Fill in the field on tab “Notes”.
  6. +
+
+
+

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

+
    +
  • OdooMRP team
  • +
  • AvanzOSC
  • +
  • Serv. Tecnol. Avanzados - Pedro M. Baeza
  • +
+
+
+

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/manufacture project on GitHub.

+

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

+
+
+
+ + From 19686dd971c47d139ec602a08cd66ac60a6c6e37 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Mon, 10 Feb 2020 12:48:58 +0000 Subject: [PATCH 19/42] [UPD] Update mrp_production_note.pot --- mrp_production_note/i18n/mrp_production_note.pot | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mrp_production_note/i18n/mrp_production_note.pot b/mrp_production_note/i18n/mrp_production_note.pot index 3a75d20da12..f2b63b70d0c 100644 --- a/mrp_production_note/i18n/mrp_production_note.pot +++ b/mrp_production_note/i18n/mrp_production_note.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" +"Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: \n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +msgid "Notes" msgstr "" #. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form -msgid "Notes" +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Production Order" msgstr "" From 0d52d5f850baa5acb005f6ae61730c3291981fb0 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 10 Feb 2020 14:10:06 +0000 Subject: [PATCH 20/42] [UPD] README.rst --- mrp_production_note/README.rst | 10 +++++----- mrp_production_note/static/description/index.html | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst index 328ecdbe3f8..ccd916fbc94 100644 --- a/mrp_production_note/README.rst +++ b/mrp_production_note/README.rst @@ -14,13 +14,13 @@ Notes in production orders :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github - :target: https://github.com/OCA/manufacture/tree/12.0-mig-mrp_production_note/mrp_production_note + :target: https://github.com/OCA/manufacture/tree/12.0/mrp_production_note :alt: OCA/manufacture .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/manufacture-12-0-mig-mrp_production_note/manufacture-12-0-mig-mrp_production_note-mrp_production_note + :target: https://translation.odoo-community.org/projects/manufacture-12-0/manufacture-12-0-mrp_production_note :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/129/12.0-mig-mrp_production_note + :target: https://runbot.odoo-community.org/runbot/129/12.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -47,7 +47,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. @@ -82,6 +82,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/manufacture `_ project on GitHub. +This module is part of the `OCA/manufacture `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/mrp_production_note/static/description/index.html b/mrp_production_note/static/description/index.html index a8f78c0aa9c..c6b9173d3bf 100644 --- a/mrp_production_note/static/description/index.html +++ b/mrp_production_note/static/description/index.html @@ -367,7 +367,7 @@

Notes in production orders

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

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

+

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

This module creates in production orders a new field to add notes in rich text format.

Table of contents

@@ -396,7 +396,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.

@@ -415,7 +415,7 @@

Contributors

  • Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>
  • Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
  • Ana Juaristi <anajuaristi@avanzosc.es>
  • -
  • Laurent Bélorgey <lb@lalieutenante.com>
  • +
  • Laurent Bélorgey <lb@lalieutenante.com>
  • @@ -425,7 +425,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/manufacture project on GitHub.

    +

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

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

    From 80860da9be7ff896bef001e6558b9495f6bf7803 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Mon, 9 Mar 2020 15:36:48 +0000 Subject: [PATCH 21/42] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: manufacture-12.0/manufacture-12.0-mrp_production_note Translate-URL: https://translation.odoo-community.org/projects/manufacture-12-0/manufacture-12-0-mrp_production_note/ --- mrp_production_note/i18n/de.po | 16 +++++++++------- mrp_production_note/i18n/es.po | 16 +++++++++------- mrp_production_note/i18n/es_MX.po | 16 +++++++++------- mrp_production_note/i18n/fi.po | 14 +++++++------- mrp_production_note/i18n/fr.po | 16 +++++++++------- mrp_production_note/i18n/gl.po | 16 +++++++++------- mrp_production_note/i18n/hr.po | 16 +++++++++------- mrp_production_note/i18n/hr_HR.po | 16 +++++++++------- mrp_production_note/i18n/it.po | 14 +++++++------- mrp_production_note/i18n/lt.po | 16 +++++++++------- mrp_production_note/i18n/nl_NL.po | 16 +++++++++------- mrp_production_note/i18n/pt_BR.po | 16 +++++++++------- mrp_production_note/i18n/ro.po | 16 +++++++++------- mrp_production_note/i18n/sl.po | 16 +++++++++------- mrp_production_note/i18n/tr.po | 16 +++++++++------- mrp_production_note/i18n/tr_TR.po | 14 +++++++------- mrp_production_note/i18n/vi_VN.po | 16 +++++++++------- mrp_production_note/i18n/zh_CN.po | 16 +++++++++------- 18 files changed, 156 insertions(+), 126 deletions(-) diff --git a/mrp_production_note/i18n/de.po b/mrp_production_note/i18n/de.po index 381d26922b9..8f4ace39e23 100644 --- a/mrp_production_note/i18n/de.po +++ b/mrp_production_note/i18n/de.po @@ -21,12 +21,14 @@ msgstr "" "X-Generator: Weblate 3.3\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Fertigungsauftrag" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Hinweise" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Fertigungsauftrag" diff --git a/mrp_production_note/i18n/es.po b/mrp_production_note/i18n/es.po index 24aac29d4cc..92827ad4b1a 100644 --- a/mrp_production_note/i18n/es.po +++ b/mrp_production_note/i18n/es.po @@ -19,12 +19,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Órden de producción" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Notas" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Órden de producción" diff --git a/mrp_production_note/i18n/es_MX.po b/mrp_production_note/i18n/es_MX.po index 3ff51bc6f1e..3245b9214a2 100644 --- a/mrp_production_note/i18n/es_MX.po +++ b/mrp_production_note/i18n/es_MX.po @@ -20,12 +20,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Orden de fabricación" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Orden de fabricación" diff --git a/mrp_production_note/i18n/fi.po b/mrp_production_note/i18n/fi.po index b274109ff56..7318f072bc3 100644 --- a/mrp_production_note/i18n/fi.po +++ b/mrp_production_note/i18n/fi.po @@ -19,12 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Huomautukset" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Production Order" +msgstr "" diff --git a/mrp_production_note/i18n/fr.po b/mrp_production_note/i18n/fr.po index 383e5811f89..8e411feb24e 100644 --- a/mrp_production_note/i18n/fr.po +++ b/mrp_production_note/i18n/fr.po @@ -19,12 +19,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Ordre de fabrication" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Notes" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Ordre de fabrication" diff --git a/mrp_production_note/i18n/gl.po b/mrp_production_note/i18n/gl.po index b9b386c770a..46ddc595ca0 100644 --- a/mrp_production_note/i18n/gl.po +++ b/mrp_production_note/i18n/gl.po @@ -19,12 +19,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Orde de fabricación" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Notas" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Orde de fabricación" diff --git a/mrp_production_note/i18n/hr.po b/mrp_production_note/i18n/hr.po index be5a452b394..7e1ee2fcde8 100644 --- a/mrp_production_note/i18n/hr.po +++ b/mrp_production_note/i18n/hr.po @@ -20,12 +20,14 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Proizvodni nalog" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Bilješke" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Proizvodni nalog" diff --git a/mrp_production_note/i18n/hr_HR.po b/mrp_production_note/i18n/hr_HR.po index f1f10a914e6..17f09bc7e43 100644 --- a/mrp_production_note/i18n/hr_HR.po +++ b/mrp_production_note/i18n/hr_HR.po @@ -21,12 +21,14 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Proizvodni nalog" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Bilješke" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Proizvodni nalog" diff --git a/mrp_production_note/i18n/it.po b/mrp_production_note/i18n/it.po index 9dd1b0f98e2..67684586b53 100644 --- a/mrp_production_note/i18n/it.po +++ b/mrp_production_note/i18n/it.po @@ -19,12 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Note" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Production Order" +msgstr "" diff --git a/mrp_production_note/i18n/lt.po b/mrp_production_note/i18n/lt.po index ac620ccdf9f..b4e970bb270 100644 --- a/mrp_production_note/i18n/lt.po +++ b/mrp_production_note/i18n/lt.po @@ -20,12 +20,14 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2);\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Gamybos užsakymas" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Užrašai" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Gamybos užsakymas" diff --git a/mrp_production_note/i18n/nl_NL.po b/mrp_production_note/i18n/nl_NL.po index 3e7599fadbf..5fc11c7b0de 100644 --- a/mrp_production_note/i18n/nl_NL.po +++ b/mrp_production_note/i18n/nl_NL.po @@ -20,12 +20,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Productieorder" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Notities" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Productieorder" diff --git a/mrp_production_note/i18n/pt_BR.po b/mrp_production_note/i18n/pt_BR.po index c18ceaf27da..d6d33551e04 100644 --- a/mrp_production_note/i18n/pt_BR.po +++ b/mrp_production_note/i18n/pt_BR.po @@ -20,12 +20,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Ordem de fabricação" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Notas" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Ordem de fabricação" diff --git a/mrp_production_note/i18n/ro.po b/mrp_production_note/i18n/ro.po index 3e3e4a45981..2ebdf1106ac 100644 --- a/mrp_production_note/i18n/ro.po +++ b/mrp_production_note/i18n/ro.po @@ -20,12 +20,14 @@ msgstr "" "2:1));\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Comandă fabricație" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Note" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Comandă fabricație" diff --git a/mrp_production_note/i18n/sl.po b/mrp_production_note/i18n/sl.po index 0bbb3396963..a1e0840fe1b 100644 --- a/mrp_production_note/i18n/sl.po +++ b/mrp_production_note/i18n/sl.po @@ -20,12 +20,14 @@ msgstr "" "%100==4 ? 2 : 3);\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Proizvodni nalog" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Opombe" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Proizvodni nalog" diff --git a/mrp_production_note/i18n/tr.po b/mrp_production_note/i18n/tr.po index 19941ad3d1d..61b0fb20bd0 100644 --- a/mrp_production_note/i18n/tr.po +++ b/mrp_production_note/i18n/tr.po @@ -19,12 +19,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Üretim emri" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Notlar" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Üretim emri" diff --git a/mrp_production_note/i18n/tr_TR.po b/mrp_production_note/i18n/tr_TR.po index c983872d4cd..cbcb86fef1c 100644 --- a/mrp_production_note/i18n/tr_TR.po +++ b/mrp_production_note/i18n/tr_TR.po @@ -20,12 +20,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "Notlar" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +msgid "Production Order" +msgstr "" diff --git a/mrp_production_note/i18n/vi_VN.po b/mrp_production_note/i18n/vi_VN.po index a8034c23a5a..aec09f91d96 100644 --- a/mrp_production_note/i18n/vi_VN.po +++ b/mrp_production_note/i18n/vi_VN.po @@ -20,12 +20,14 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "Lệnh sản xuất" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "Lệnh sản xuất" diff --git a/mrp_production_note/i18n/zh_CN.po b/mrp_production_note/i18n/zh_CN.po index fe6c4629f1d..64df65ebfc1 100644 --- a/mrp_production_note/i18n/zh_CN.po +++ b/mrp_production_note/i18n/zh_CN.po @@ -20,12 +20,14 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mrp_production_note -#: model:ir.model,name:mrp_production_note.model_mrp_production -msgid "Manufacturing Order" -msgstr "制造订单" - -#. module: mrp_production_note -#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production_notes -#: model:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form +#: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes +#: model_terms:ir.ui.view,arch_db:mrp_production_note.mrp_production_view_notes_form msgid "Notes" msgstr "备注" + +#. module: mrp_production_note +#: model:ir.model,name:mrp_production_note.model_mrp_production +#, fuzzy +#| msgid "Manufacturing Order" +msgid "Production Order" +msgstr "制造订单" From b5f2010468ee903569ee5032b8e113c2e61bb85c Mon Sep 17 00:00:00 2001 From: ps-tubtim Date: Thu, 12 Mar 2020 13:31:15 +0700 Subject: [PATCH 22/42] [IMP] mrp_production_note: black, isort --- mrp_production_note/__manifest__.py | 16 ++++++---------- mrp_production_note/models/mrp_production.py | 2 +- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/mrp_production_note/__manifest__.py b/mrp_production_note/__manifest__.py index f65f1d3998c..7ff10865e20 100644 --- a/mrp_production_note/__manifest__.py +++ b/mrp_production_note/__manifest__.py @@ -3,19 +3,15 @@ { "name": "Notes in production orders", - "version": "12.0.1.0.0", + "version": "13.0.1.0.0", "category": "Manufacturing", "license": "AGPL-3", "author": "OdooMRP team, " - "AvanzOSC, " - "Serv. Tecnol. Avanzados - Pedro M. Baeza, " - "Odoo Community Association (OCA)", + "AvanzOSC, " + "Serv. Tecnol. Avanzados - Pedro M. Baeza, " + "Odoo Community Association (OCA)", "website": "https://github.com/OCA/manufacture", - "depends": [ - "mrp", - ], - "data": [ - "views/mrp_production_view.xml", - ], + "depends": ["mrp"], + "data": ["views/mrp_production_view.xml"], "installable": True, } diff --git a/mrp_production_note/models/mrp_production.py b/mrp_production_note/models/mrp_production.py index 4608711ff90..8f08aa2bcab 100644 --- a/mrp_production_note/models/mrp_production.py +++ b/mrp_production_note/models/mrp_production.py @@ -5,6 +5,6 @@ class MrpProduction(models.Model): - _inherit = 'mrp.production' + _inherit = "mrp.production" notes = fields.Html() From f3ec6542ba239c232a49616250335bfaa998f7ce Mon Sep 17 00:00:00 2001 From: ps-tubtim Date: Wed, 9 Sep 2020 10:32:25 +0700 Subject: [PATCH 23/42] [MIG] mrp_production_note: Migration to 13.0 --- mrp_production_note/README.rst | 11 ++++++----- mrp_production_note/readme/CONTRIBUTORS.rst | 1 + mrp_production_note/static/description/index.html | 7 ++++--- mrp_production_note/views/mrp_production_view.xml | 4 ++-- 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst index ccd916fbc94..a5c119530de 100644 --- a/mrp_production_note/README.rst +++ b/mrp_production_note/README.rst @@ -14,13 +14,13 @@ Notes in production orders :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github - :target: https://github.com/OCA/manufacture/tree/12.0/mrp_production_note + :target: https://github.com/OCA/manufacture/tree/13.0/mrp_production_note :alt: OCA/manufacture .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/manufacture-12-0/manufacture-12-0-mrp_production_note + :target: https://translation.odoo-community.org/projects/manufacture-13-0/manufacture-13-0-mrp_production_note :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/129/12.0 + :target: https://runbot.odoo-community.org/runbot/129/13.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -47,7 +47,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. @@ -68,6 +68,7 @@ Contributors * Pedro M. Baeza * Ana Juaristi * Laurent Bélorgey +* Pimolnat Suntian Maintainers ~~~~~~~~~~~ @@ -82,6 +83,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/manufacture `_ project on GitHub. +This module is part of the `OCA/manufacture `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/mrp_production_note/readme/CONTRIBUTORS.rst b/mrp_production_note/readme/CONTRIBUTORS.rst index a6b8c047f8f..7c0a6d4a289 100644 --- a/mrp_production_note/readme/CONTRIBUTORS.rst +++ b/mrp_production_note/readme/CONTRIBUTORS.rst @@ -2,3 +2,4 @@ * Pedro M. Baeza * Ana Juaristi * Laurent Bélorgey +* Pimolnat Suntian diff --git a/mrp_production_note/static/description/index.html b/mrp_production_note/static/description/index.html index c6b9173d3bf..03d47ac6ea5 100644 --- a/mrp_production_note/static/description/index.html +++ b/mrp_production_note/static/description/index.html @@ -367,7 +367,7 @@

    Notes in production orders

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

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

    +

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

    This module creates in production orders a new field to add notes in rich text format.

    Table of contents

    @@ -396,7 +396,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.

    @@ -416,6 +416,7 @@

    Contributors

  • Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
  • Ana Juaristi <anajuaristi@avanzosc.es>
  • Laurent Bélorgey <lb@lalieutenante.com>
  • +
  • Pimolnat Suntian <pimolnats@ecosoft.co.th>
  • @@ -425,7 +426,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/manufacture project on GitHub.

    +

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

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

    diff --git a/mrp_production_note/views/mrp_production_view.xml b/mrp_production_note/views/mrp_production_view.xml index 2b5c6f5e774..8350adc9929 100644 --- a/mrp_production_note/views/mrp_production_view.xml +++ b/mrp_production_note/views/mrp_production_view.xml @@ -1,6 +1,6 @@ - + - + mrp.production.notes.form mrp.production From 2d2c6f377dded9b371b7876c7badf5b89d855cac Mon Sep 17 00:00:00 2001 From: oca-travis Date: Mon, 14 Sep 2020 12:02:14 +0000 Subject: [PATCH 24/42] [UPD] Update mrp_production_note.pot --- mrp_production_note/i18n/mrp_production_note.pot | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/mrp_production_note/i18n/mrp_production_note.pot b/mrp_production_note/i18n/mrp_production_note.pot index f2b63b70d0c..10a20b3186c 100644 --- a/mrp_production_note/i18n/mrp_production_note.pot +++ b/mrp_production_note/i18n/mrp_production_note.pot @@ -1,12 +1,12 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * mrp_production_note +# * mrp_production_note # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" +"Project-Id-Version: Odoo Server 13.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" @@ -23,4 +23,3 @@ msgstr "" #: model:ir.model,name:mrp_production_note.model_mrp_production msgid "Production Order" msgstr "" - From 69be3f21870358548226a4c4de5af96384020867 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 22 Nov 2020 18:16:32 +0000 Subject: [PATCH 25/42] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: manufacture-13.0/manufacture-13.0-mrp_production_note Translate-URL: https://translation.odoo-community.org/projects/manufacture-13-0/manufacture-13-0-mrp_production_note/ --- mrp_production_note/i18n/de.po | 1 - mrp_production_note/i18n/es.po | 1 - mrp_production_note/i18n/es_MX.po | 1 - mrp_production_note/i18n/fr.po | 1 - mrp_production_note/i18n/gl.po | 1 - mrp_production_note/i18n/hr.po | 1 - mrp_production_note/i18n/hr_HR.po | 1 - mrp_production_note/i18n/lt.po | 1 - mrp_production_note/i18n/nl_NL.po | 1 - mrp_production_note/i18n/pt_BR.po | 1 - mrp_production_note/i18n/ro.po | 1 - mrp_production_note/i18n/sl.po | 1 - mrp_production_note/i18n/tr.po | 1 - mrp_production_note/i18n/vi_VN.po | 1 - mrp_production_note/i18n/zh_CN.po | 1 - 15 files changed, 15 deletions(-) diff --git a/mrp_production_note/i18n/de.po b/mrp_production_note/i18n/de.po index 8f4ace39e23..98699507fdb 100644 --- a/mrp_production_note/i18n/de.po +++ b/mrp_production_note/i18n/de.po @@ -29,6 +29,5 @@ msgstr "Hinweise" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Fertigungsauftrag" diff --git a/mrp_production_note/i18n/es.po b/mrp_production_note/i18n/es.po index 92827ad4b1a..2ad48f35ef4 100644 --- a/mrp_production_note/i18n/es.po +++ b/mrp_production_note/i18n/es.po @@ -27,6 +27,5 @@ msgstr "Notas" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Órden de producción" diff --git a/mrp_production_note/i18n/es_MX.po b/mrp_production_note/i18n/es_MX.po index 3245b9214a2..762066b627a 100644 --- a/mrp_production_note/i18n/es_MX.po +++ b/mrp_production_note/i18n/es_MX.po @@ -28,6 +28,5 @@ msgstr "" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Orden de fabricación" diff --git a/mrp_production_note/i18n/fr.po b/mrp_production_note/i18n/fr.po index 8e411feb24e..a4d7997b2b8 100644 --- a/mrp_production_note/i18n/fr.po +++ b/mrp_production_note/i18n/fr.po @@ -27,6 +27,5 @@ msgstr "Notes" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Ordre de fabrication" diff --git a/mrp_production_note/i18n/gl.po b/mrp_production_note/i18n/gl.po index 46ddc595ca0..f73119c7090 100644 --- a/mrp_production_note/i18n/gl.po +++ b/mrp_production_note/i18n/gl.po @@ -27,6 +27,5 @@ msgstr "Notas" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Orde de fabricación" diff --git a/mrp_production_note/i18n/hr.po b/mrp_production_note/i18n/hr.po index 7e1ee2fcde8..f948e918f04 100644 --- a/mrp_production_note/i18n/hr.po +++ b/mrp_production_note/i18n/hr.po @@ -28,6 +28,5 @@ msgstr "Bilješke" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Proizvodni nalog" diff --git a/mrp_production_note/i18n/hr_HR.po b/mrp_production_note/i18n/hr_HR.po index 17f09bc7e43..811e3ecd06e 100644 --- a/mrp_production_note/i18n/hr_HR.po +++ b/mrp_production_note/i18n/hr_HR.po @@ -29,6 +29,5 @@ msgstr "Bilješke" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Proizvodni nalog" diff --git a/mrp_production_note/i18n/lt.po b/mrp_production_note/i18n/lt.po index b4e970bb270..99279296e1f 100644 --- a/mrp_production_note/i18n/lt.po +++ b/mrp_production_note/i18n/lt.po @@ -28,6 +28,5 @@ msgstr "Užrašai" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Gamybos užsakymas" diff --git a/mrp_production_note/i18n/nl_NL.po b/mrp_production_note/i18n/nl_NL.po index 5fc11c7b0de..f0d204c70a4 100644 --- a/mrp_production_note/i18n/nl_NL.po +++ b/mrp_production_note/i18n/nl_NL.po @@ -28,6 +28,5 @@ msgstr "Notities" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Productieorder" diff --git a/mrp_production_note/i18n/pt_BR.po b/mrp_production_note/i18n/pt_BR.po index d6d33551e04..81396fe6d3f 100644 --- a/mrp_production_note/i18n/pt_BR.po +++ b/mrp_production_note/i18n/pt_BR.po @@ -28,6 +28,5 @@ msgstr "Notas" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Ordem de fabricação" diff --git a/mrp_production_note/i18n/ro.po b/mrp_production_note/i18n/ro.po index 2ebdf1106ac..db989a43c1e 100644 --- a/mrp_production_note/i18n/ro.po +++ b/mrp_production_note/i18n/ro.po @@ -28,6 +28,5 @@ msgstr "Note" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Comandă fabricație" diff --git a/mrp_production_note/i18n/sl.po b/mrp_production_note/i18n/sl.po index a1e0840fe1b..1c216d44b53 100644 --- a/mrp_production_note/i18n/sl.po +++ b/mrp_production_note/i18n/sl.po @@ -28,6 +28,5 @@ msgstr "Opombe" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Proizvodni nalog" diff --git a/mrp_production_note/i18n/tr.po b/mrp_production_note/i18n/tr.po index 61b0fb20bd0..8052588e5c6 100644 --- a/mrp_production_note/i18n/tr.po +++ b/mrp_production_note/i18n/tr.po @@ -27,6 +27,5 @@ msgstr "Notlar" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Üretim emri" diff --git a/mrp_production_note/i18n/vi_VN.po b/mrp_production_note/i18n/vi_VN.po index aec09f91d96..a95f8de708b 100644 --- a/mrp_production_note/i18n/vi_VN.po +++ b/mrp_production_note/i18n/vi_VN.po @@ -28,6 +28,5 @@ msgstr "" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "Lệnh sản xuất" diff --git a/mrp_production_note/i18n/zh_CN.po b/mrp_production_note/i18n/zh_CN.po index 64df65ebfc1..a9ef48bbf68 100644 --- a/mrp_production_note/i18n/zh_CN.po +++ b/mrp_production_note/i18n/zh_CN.po @@ -28,6 +28,5 @@ msgstr "备注" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production #, fuzzy -#| msgid "Manufacturing Order" msgid "Production Order" msgstr "制造订单" From 7e62897e55ceb9cfe1855e36aa36053a8e31051f Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 17 Dec 2020 04:24:29 +0000 Subject: [PATCH 26/42] [UPD] README.rst --- mrp_production_note/README.rst | 5 +---- mrp_production_note/static/description/index.html | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst index a5c119530de..3f29d54db62 100644 --- a/mrp_production_note/README.rst +++ b/mrp_production_note/README.rst @@ -19,11 +19,8 @@ Notes in production orders .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/manufacture-13-0/manufacture-13-0-mrp_production_note :alt: Translate me on Weblate -.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/129/13.0 - :alt: Try me on Runbot -|badge1| |badge2| |badge3| |badge4| |badge5| +|badge1| |badge2| |badge3| |badge4| This module creates in production orders a new field to add notes in rich text format. diff --git a/mrp_production_note/static/description/index.html b/mrp_production_note/static/description/index.html index 03d47ac6ea5..9d5d97f22d8 100644 --- a/mrp_production_note/static/description/index.html +++ b/mrp_production_note/static/description/index.html @@ -367,7 +367,7 @@

    Notes in production orders

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

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

    +

    Beta License: AGPL-3 OCA/manufacture Translate me on Weblate

    This module creates in production orders a new field to add notes in rich text format.

    Table of contents

    From 6a66e799812dff9bb5cc02bf4962358d52a9a6d9 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 17 Dec 2020 06:18:29 +0000 Subject: [PATCH 27/42] [UPD] README.rst --- mrp_production_note/README.rst | 5 ++++- mrp_production_note/static/description/index.html | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst index 3f29d54db62..a5c119530de 100644 --- a/mrp_production_note/README.rst +++ b/mrp_production_note/README.rst @@ -19,8 +19,11 @@ Notes in production orders .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/manufacture-13-0/manufacture-13-0-mrp_production_note :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/129/13.0 + :alt: Try me on Runbot -|badge1| |badge2| |badge3| |badge4| +|badge1| |badge2| |badge3| |badge4| |badge5| This module creates in production orders a new field to add notes in rich text format. diff --git a/mrp_production_note/static/description/index.html b/mrp_production_note/static/description/index.html index 9d5d97f22d8..03d47ac6ea5 100644 --- a/mrp_production_note/static/description/index.html +++ b/mrp_production_note/static/description/index.html @@ -367,7 +367,7 @@

    Notes in production orders

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

    Beta License: AGPL-3 OCA/manufacture Translate me on Weblate

    +

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

    This module creates in production orders a new field to add notes in rich text format.

    Table of contents

    From 067fd44aedd2cf9096b29c4d3c5314b527043d26 Mon Sep 17 00:00:00 2001 From: Cas Vissers Date: Tue, 15 Jun 2021 12:05:15 +0000 Subject: [PATCH 28/42] Translated using Weblate (Dutch) Currently translated at 100.0% (2 of 2 strings) Translation: manufacture-13.0/manufacture-13.0-mrp_production_note Translate-URL: https://translation.odoo-community.org/projects/manufacture-13-0/manufacture-13-0-mrp_production_note/nl_NL/ --- mrp_production_note/i18n/nl_NL.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mrp_production_note/i18n/nl_NL.po b/mrp_production_note/i18n/nl_NL.po index f0d204c70a4..47002c10f7f 100644 --- a/mrp_production_note/i18n/nl_NL.po +++ b/mrp_production_note/i18n/nl_NL.po @@ -9,15 +9,16 @@ msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-05-06 03:32+0000\n" -"PO-Revision-Date: 2017-05-06 03:32+0000\n" -"Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" -"teams/23907/nl_NL/)\n" +"PO-Revision-Date: 2021-06-15 14:48+0000\n" +"Last-Translator: Cas Vissers \n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/" +"23907/nl_NL/)\n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" #. module: mrp_production_note #: model:ir.model.fields,field_description:mrp_production_note.field_mrp_production__notes @@ -27,6 +28,5 @@ msgstr "Notities" #. module: mrp_production_note #: model:ir.model,name:mrp_production_note.model_mrp_production -#, fuzzy msgid "Production Order" msgstr "Productieorder" From 577b778e5a663486f157c9f39ccca15be857f587 Mon Sep 17 00:00:00 2001 From: janikvonrotz Date: Mon, 31 Oct 2022 08:40:09 +0100 Subject: [PATCH 29/42] [MIG] mrp_production_note: Migration to 14.0 --- mrp_production_note/__manifest__.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/mrp_production_note/__manifest__.py b/mrp_production_note/__manifest__.py index 7ff10865e20..bfa09007047 100644 --- a/mrp_production_note/__manifest__.py +++ b/mrp_production_note/__manifest__.py @@ -3,13 +3,10 @@ { "name": "Notes in production orders", - "version": "13.0.1.0.0", + "version": "14.0.1.0.0", "category": "Manufacturing", "license": "AGPL-3", - "author": "OdooMRP team, " - "AvanzOSC, " - "Serv. Tecnol. Avanzados - Pedro M. Baeza, " - "Odoo Community Association (OCA)", + "author": "OdooMRP team, AvanzOSC, Odoo Community Association (OCA)", "website": "https://github.com/OCA/manufacture", "depends": ["mrp"], "data": ["views/mrp_production_view.xml"], From f6b68f2ef1a9152be9cce73247da6687081e2370 Mon Sep 17 00:00:00 2001 From: Christian Santamaria Date: Wed, 7 Jun 2023 10:27:22 +0200 Subject: [PATCH 30/42] [MIG] mrp_production_note: Migration to 15.0 --- mrp_production_note/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_production_note/__manifest__.py b/mrp_production_note/__manifest__.py index bfa09007047..3eccc182ee4 100644 --- a/mrp_production_note/__manifest__.py +++ b/mrp_production_note/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Notes in production orders", - "version": "14.0.1.0.0", + "version": "15.0.1.0.0", "category": "Manufacturing", "license": "AGPL-3", "author": "OdooMRP team, AvanzOSC, Odoo Community Association (OCA)", From 3bed3fd727072af57ecf610c9b9b78851a8aba77 Mon Sep 17 00:00:00 2001 From: Christian Santamaria Date: Thu, 31 Aug 2023 12:23:25 +0200 Subject: [PATCH 31/42] [IMP] mrp_production_note: add name attr for view inheritance --- mrp_production_note/views/mrp_production_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_production_note/views/mrp_production_view.xml b/mrp_production_note/views/mrp_production_view.xml index 8350adc9929..858bbe45c72 100644 --- a/mrp_production_note/views/mrp_production_view.xml +++ b/mrp_production_note/views/mrp_production_view.xml @@ -6,7 +6,7 @@ - + From 77d784f5811aa72cb96b08eec4fd76a5b9a139f3 Mon Sep 17 00:00:00 2001 From: oca-ci Date: Tue, 5 Sep 2023 18:05:26 +0000 Subject: [PATCH 32/42] [UPD] Update mrp_production_note.pot --- mrp_production_note/i18n/mrp_production_note.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrp_production_note/i18n/mrp_production_note.pot b/mrp_production_note/i18n/mrp_production_note.pot index 10a20b3186c..08ef8db3426 100644 --- a/mrp_production_note/i18n/mrp_production_note.pot +++ b/mrp_production_note/i18n/mrp_production_note.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 13.0\n" +"Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: \n" "Language-Team: \n" From 987b282c51af9a7260240aa1b0993418c43c044b Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 5 Sep 2023 18:11:24 +0000 Subject: [PATCH 33/42] [UPD] README.rst --- mrp_production_note/README.rst | 24 ++++++----- .../static/description/index.html | 43 ++++++++++--------- 2 files changed, 35 insertions(+), 32 deletions(-) diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst index a5c119530de..d573fee0d14 100644 --- a/mrp_production_note/README.rst +++ b/mrp_production_note/README.rst @@ -2,10 +2,13 @@ Notes in production orders ========================== -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:0d1f96337f134b3f52969c59d2059f7d78571ead4e528106e39a63a5072af725 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -14,16 +17,16 @@ Notes in production orders :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github - :target: https://github.com/OCA/manufacture/tree/13.0/mrp_production_note + :target: https://github.com/OCA/manufacture/tree/15.0/mrp_production_note :alt: OCA/manufacture .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/manufacture-13-0/manufacture-13-0-mrp_production_note + :target: https://translation.odoo-community.org/projects/manufacture-15-0/manufacture-15-0-mrp_production_note :alt: Translate me on Weblate -.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/129/13.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/manufacture&target_branch=15.0 + :alt: Try me on Runboat -|badge1| |badge2| |badge3| |badge4| |badge5| +|badge1| |badge2| |badge3| |badge4| |badge5| This module creates in production orders a new field to add notes in rich text format. @@ -46,8 +49,8 @@ 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 `_. +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. @@ -59,7 +62,6 @@ Authors * OdooMRP team * AvanzOSC -* Serv. Tecnol. Avanzados - Pedro M. Baeza Contributors ~~~~~~~~~~~~ @@ -83,6 +85,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/manufacture `_ project on GitHub. +This module is part of the `OCA/manufacture `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/mrp_production_note/static/description/index.html b/mrp_production_note/static/description/index.html index 03d47ac6ea5..3d5e8198978 100644 --- a/mrp_production_note/static/description/index.html +++ b/mrp_production_note/static/description/index.html @@ -1,20 +1,20 @@ - + - + Notes in production orders