From 3634af90f70619b482201ba04d4d3a90d66f4ad4 Mon Sep 17 00:00:00 2001 From: oihane Date: Thu, 5 Mar 2015 12:18:18 +0100 Subject: [PATCH 01/35] [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 000000000..ec2bdd51e --- /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 000000000..7fc7c09f9 --- /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 000000000..7cfe73aac --- /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 000000000..d49c7defc --- /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 000000000..bd1417aac --- /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 000000000..a670e4677 --- /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 000000000..3879571de --- /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 000000000..fa719bfc7 --- /dev/null +++ b/mrp_production_note/views/mrp_production_view.xml @@ -0,0 +1,17 @@ + + + + + mrp.production.form + mrp.production + + + + + + + + + + + From 0eda84fc4ee0d55c1dfb3c60816166a01fe5b949 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 25 Mar 2015 21:35:06 +0100 Subject: [PATCH 02/35] [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 7cfe73aac..c133eb98e 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 603ac7e20393ab90aa0d655800878adf49962b47 Mon Sep 17 00:00:00 2001 From: oihane Date: Mon, 27 Apr 2015 09:33:10 +0200 Subject: [PATCH 03/35] [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 c133eb98e..75e4d7697 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 2c8893f3bd15162d9c738354523c85085d8a6f45 Mon Sep 17 00:00:00 2001 From: oihane Date: Mon, 22 Jun 2015 10:14:41 +0200 Subject: [PATCH 04/35] [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 ec2bdd51e..a9d2a2b34 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 7fc7c09f9..054c8853d 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 75e4d7697..1cb387d89 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 a670e4677..1edfea846 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 3879571de..c261bf3ba 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 a3024c767e45a56d349a60d371cc6f9cdc52deee Mon Sep 17 00:00:00 2001 From: oihane Date: Tue, 23 Jun 2015 11:35:52 +0200 Subject: [PATCH 05/35] [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 a9d2a2b34..c938f77c5 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 1771c77a2a20d9a9c66ed750eb3a583ba58034f7 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/35] [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 1cb387d89..724690d12 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 97a7e42e052e72e6c507e21bca972093814ca1fd Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 14 Oct 2015 03:30:18 +0200 Subject: [PATCH 07/35] [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 724690d12..d9efd2e69 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 d8cc05860fccedc3c3fbf2b7c927f49fff949940 Mon Sep 17 00:00:00 2001 From: Oihane Crucelaegui Date: Thu, 14 Jan 2016 19:24:56 +0100 Subject: [PATCH 08/35] [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 c938f77c5..586378ba4 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 054c8853d..6ea76f9a8 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 d9efd2e69..cbc56e16d 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 1edfea846..82baeaa4a 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 c261bf3ba..b8dc14156 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 fa719bfc7..2ed18266a 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 426d54200daabb237d6141f070a5e455db10306f Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 23 Jan 2016 15:25:37 -0500 Subject: [PATCH 09/35] 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 000000000..0e040ff11 --- /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 d49c7defc..09a6e884a 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 000000000..2a5fdb596 --- /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 000000000..560dd812f --- /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 2040fa904403432fe255c47c6adde32c5c0f2436 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:57:42 +0200 Subject: [PATCH 10/35] [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 cbc56e16d..1591581e1 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 8820a6e8fd7fa26d8b7b5a334e5012a50a6ff012 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:57:44 +0200 Subject: [PATCH 11/35] [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 be0d8ab251b600eb84afd35b5495f572836d1ad3 Mon Sep 17 00:00:00 2001 From: MonsieurB Date: Mon, 6 Feb 2017 11:42:57 +0100 Subject: [PATCH 12/35] 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 1591581e1..fafd21f9a 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 b8dc14156..048b41645 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 2ed18266a..2b5c6f5e7 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 851160bac3a21547481afa6b90a3854b4aa2da43 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 6 May 2017 05:25:40 +0200 Subject: [PATCH 13/35] 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 000000000..f856fa3ee --- /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 000000000..574ad34a7 --- /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 000000000..747ff4144 --- /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 000000000..9f0a49d69 --- /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 000000000..3e211d612 --- /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 000000000..09277dcee --- /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 000000000..ef0fd3831 --- /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 000000000..d6a55fdd1 --- /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 000000000..e37098758 --- /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 000000000..4d678f49b --- /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 000000000..adf066915 --- /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 000000000..f2cb74858 --- /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 000000000..794b4cefd --- /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 000000000..46cd063a9 --- /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 cd7b141e1a92d01386ad73c125d5b3022a573896 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/35] 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 bd1417aac..000000000 --- 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 949f7ce50622f18524dc1baff7672eb494281e95 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 17:16:37 +0000 Subject: [PATCH 15/35] [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 0e040ff11..05a55faf1 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 09a6e884a..24aac29d4 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 f856fa3ee..3ff51bc6f 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 574ad34a7..b274109ff 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 747ff4144..383e5811f 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 9f0a49d69..b9b386c77 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 3e211d612..be5a452b3 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 09277dcee..f1f10a914 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 ef0fd3831..9dd1b0f98 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 d6a55fdd1..ac620ccdf 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 000000000..3a75d20da --- /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 e37098758..3e7599fad 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 2a5fdb596..c18ceaf27 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 4d678f49b..3e3e4a459 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 adf066915..0bbb33969 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 f2cb74858..19941ad3d 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 794b4cefd..c983872d4 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 46cd063a9..a8034c23a 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 560dd812f..fe6c4629f 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 4c46d014a836e5841bfbbbff306c37794a8f54e3 Mon Sep 17 00:00:00 2001 From: Maria Sparenberg Date: Sun, 9 Dec 2018 16:15:05 +0000 Subject: [PATCH 16/35] 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 05a55faf1..381d26922 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 b5c2b6ea4800fc3433e78aaaf620ef3b3bcc54fa Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 3 Apr 2019 03:00:30 +0000 Subject: [PATCH 17/35] [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 d64e99d24125f4f9a67639a77783d13fa0867478 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/35] [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 586378ba4..328ecdbe3 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 -Maintainer ----------- +Maintainers +~~~~~~~~~~~ + +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 6ea76f9a8..d3ee04cbd 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 fafd21f9a..f65f1d399 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 82baeaa4a..81dc60025 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 048b41645..4608711ff 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 000000000..a6b8c047f --- /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 000000000..188c58eef --- /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 000000000..5d52f968c --- /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 000000000..a8f78c0aa --- /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 d0061161a33ad84522343d578e552345ec74fba7 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Mon, 10 Feb 2020 12:48:58 +0000 Subject: [PATCH 19/35] [UPD] Update mrp_production_note.pot --- mrp_production_note/i18n/mrp_production_note.pot | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mrp_production_note/i18n/mrp_production_note.pot b/mrp_production_note/i18n/mrp_production_note.pot index 3a75d20da..f2b63b70d 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" -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 +msgid "Production Order" +msgstr "" + From 1a3b0c29b0944c339629bb3dd70f03c448a0a133 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 10 Feb 2020 14:10:06 +0000 Subject: [PATCH 20/35] [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 328ecdbe3..ccd916fbc 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 a8f78c0aa..c6b9173d3 100644 --- a/mrp_production_note/static/description/index.html +++ b/mrp_production_note/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! 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 @@ ul.auto-toc {

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 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
  • 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 @@ If you spotted it first, help us smashing it by providing a detailed and welcome

    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 30f979ebe0b477aabf12b25c7c177de6ff5b4be0 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Mon, 9 Mar 2020 15:36:48 +0000 Subject: [PATCH 21/35] 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 381d26922..8f4ace39e 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 24aac29d4..92827ad4b 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 3ff51bc6f..3245b9214 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 b274109ff..7318f072b 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 383e5811f..8e411feb2 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 b9b386c77..46ddc595c 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 be5a452b3..7e1ee2fcd 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 f1f10a914..17f09bc7e 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 9dd1b0f98..67684586b 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 ac620ccdf..b4e970bb2 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 3e7599fad..5fc11c7b0 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 c18ceaf27..d6d33551e 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 3e3e4a459..2ebdf1106 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 0bbb33969..a1e0840fe 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 19941ad3d..61b0fb20b 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 c983872d4..cbcb86fef 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 a8034c23a..aec09f91d 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 fe6c4629f..64df65ebf 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 e54a5d3777ed6a71b2688637b0c301619570229a Mon Sep 17 00:00:00 2001 From: ps-tubtim Date: Thu, 12 Mar 2020 13:31:15 +0700 Subject: [PATCH 22/35] [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 f65f1d399..7ff10865e 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 4608711ff..8f08aa2bc 100644 --- a/mrp_production_note/models/mrp_production.py +++ b/mrp_production_note/models/mrp_production.py @@ -5,6 +5,6 @@ from odoo import fields, models class MrpProduction(models.Model): - _inherit = 'mrp.production' + _inherit = "mrp.production" notes = fields.Html() From aca2db24b235a2300d49aaf1de09d425f6d95519 Mon Sep 17 00:00:00 2001 From: ps-tubtim Date: Wed, 9 Sep 2020 10:32:25 +0700 Subject: [PATCH 23/35] [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 ccd916fbc..a5c119530 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 a6b8c047f..7c0a6d4a2 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 c6b9173d3..03d47ac6e 100644 --- a/mrp_production_note/static/description/index.html +++ b/mrp_production_note/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! 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 @@ ul.auto-toc {

    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 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
  • 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 @@ If you spotted it first, help us smashing it by providing a detailed and welcome

    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 2b5c6f5e7..8350adc99 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 43871aeb018d253df5e44e5a6eba51d5adf05834 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Mon, 14 Sep 2020 12:02:14 +0000 Subject: [PATCH 24/35] [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 f2b63b70d..10a20b318 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 06465f143b70cf07167074c8a20956aac45e02b1 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 22 Nov 2020 18:16:32 +0000 Subject: [PATCH 25/35] 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 8f4ace39e..98699507f 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 92827ad4b..2ad48f35e 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 3245b9214..762066b62 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 8e411feb2..a4d7997b2 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 46ddc595c..f73119c70 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 7e1ee2fcd..f948e918f 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 17f09bc7e..811e3ecd0 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 b4e970bb2..99279296e 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 5fc11c7b0..f0d204c70 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 d6d33551e..81396fe6d 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 2ebdf1106..db989a43c 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 a1e0840fe..1c216d44b 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 61b0fb20b..8052588e5 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 aec09f91d..a95f8de70 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 64df65ebf..a9ef48bbf 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 4a68e324685513e39aeb3730d2ff9de10d12bb3e Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 17 Dec 2020 04:24:29 +0000 Subject: [PATCH 26/35] [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 a5c119530..3f29d54db 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 03d47ac6e..9d5d97f22 100644 --- a/mrp_production_note/static/description/index.html +++ b/mrp_production_note/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! 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 d4f73ee57964739c75611677662d5bcadc9602d0 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 17 Dec 2020 06:18:29 +0000 Subject: [PATCH 27/35] [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 3f29d54db..a5c119530 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 9d5d97f22..03d47ac6e 100644 --- a/mrp_production_note/static/description/index.html +++ b/mrp_production_note/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! 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 5c3649e1adf00a78f8d16ee8ae77f11e7959bffd Mon Sep 17 00:00:00 2001 From: Cas Vissers Date: Tue, 15 Jun 2021 12:05:15 +0000 Subject: [PATCH 28/35] 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 f0d204c70..47002c10f 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 a3e48b513412530d8f1580bdff0d6ac0bbc9c228 Mon Sep 17 00:00:00 2001 From: janikvonrotz Date: Mon, 31 Oct 2022 08:40:09 +0100 Subject: [PATCH 29/35] [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 7ff10865e..bfa090070 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 e0d2dbe8e8f4d86465fa6c3cee6beee238c0050b Mon Sep 17 00:00:00 2001 From: Christian Santamaria Date: Wed, 7 Jun 2023 10:27:22 +0200 Subject: [PATCH 30/35] [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 bfa090070..3eccc182e 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 1d3dcf91ae023b14b94ddc22ed48d203655d40a2 Mon Sep 17 00:00:00 2001 From: Christian Santamaria Date: Thu, 31 Aug 2023 12:23:25 +0200 Subject: [PATCH 31/35] [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 8350adc99..858bbe45c 100644 --- a/mrp_production_note/views/mrp_production_view.xml +++ b/mrp_production_note/views/mrp_production_view.xml @@ -6,7 +6,7 @@ - + From 497e3df82cec4fa2a9fd39a07f47eee5fac95c72 Mon Sep 17 00:00:00 2001 From: oca-ci Date: Tue, 5 Sep 2023 18:05:26 +0000 Subject: [PATCH 32/35] [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 10a20b318..08ef8db34 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 c5c61f57f676332c8fdfe1d6f4201687f6637287 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 5 Sep 2023 18:11:24 +0000 Subject: [PATCH 33/35] [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 a5c119530..d573fee0d 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 03d47ac6e..3d5e81989 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