From 19b549ba455f3bd85ba4981674abbdd7c17feb35 Mon Sep 17 00:00:00 2001 From: oihane Date: Thu, 5 Mar 2015 12:18:18 +0100 Subject: [PATCH 01/30] [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 e559fdfa58dcf888e1ec1aa90b71c0ffa45d1152 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 25 Mar 2015 21:35:06 +0100 Subject: [PATCH 02/30] [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 8f204b2da5f8295da2b8082cb67320d84d7df3ee Mon Sep 17 00:00:00 2001 From: oihane Date: Mon, 27 Apr 2015 09:33:10 +0200 Subject: [PATCH 03/30] [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 c92c12dcc7e2e6616bb4334b9379d567c3d71434 Mon Sep 17 00:00:00 2001 From: oihane Date: Mon, 22 Jun 2015 10:14:41 +0200 Subject: [PATCH 04/30] [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 9a5057bb52ffedc83be56aa67d0d627c0c0b4a50 Mon Sep 17 00:00:00 2001 From: oihane Date: Tue, 23 Jun 2015 11:35:52 +0200 Subject: [PATCH 05/30] [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 e1f8224bcbe982f5d42713c8baac85172549e5bf 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/30] [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 77f2747b1fc9c1880a635870460b43c31e664769 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 14 Oct 2015 03:30:18 +0200 Subject: [PATCH 07/30] [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 ec3425a26f412248c85039a3503ab6003b412ee5 Mon Sep 17 00:00:00 2001 From: Oihane Crucelaegui Date: Thu, 14 Jan 2016 19:24:56 +0100 Subject: [PATCH 08/30] [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 1f137c2ffc138cb253efdee576e92201dbbb7ed5 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 23 Jan 2016 15:25:37 -0500 Subject: [PATCH 09/30] 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 26b4f377555e3eeedc03790075b4a7aa3c1b73ac Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:57:42 +0200 Subject: [PATCH 10/30] [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 b97f8a84058807cb3c2310a6afa3034bbe70c7b3 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:57:44 +0200 Subject: [PATCH 11/30] [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 aea0252bf9826be13faf655aadf702ec965b5d32 Mon Sep 17 00:00:00 2001 From: MonsieurB Date: Mon, 6 Feb 2017 11:42:57 +0100 Subject: [PATCH 12/30] 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 02d23bb62d2b6e96a27ff9ed59258cbadd38ce97 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 6 May 2017 05:25:40 +0200 Subject: [PATCH 13/30] 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 2271c6229a090c0e174a062ed874c5381f56d91b 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/30] 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 d8d56987f9102cfa72c6776ee70727f7ea29eca4 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 17:16:37 +0000 Subject: [PATCH 15/30] [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 72915891669416b1345154837fab98c62f8a2a1e Mon Sep 17 00:00:00 2001 From: Maria Sparenberg Date: Sun, 9 Dec 2018 16:15:05 +0000 Subject: [PATCH 16/30] 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 2825642e4ea5867cd86c483fdb38e32d155906f9 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 3 Apr 2019 03:00:30 +0000 Subject: [PATCH 17/30] [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 cc6e5c24f627b7afc715395182b2e074ee9b56af 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/30] [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 7dd0a7269d4bd6addeb8773df832614ae6419f6d Mon Sep 17 00:00:00 2001 From: oca-travis Date: Mon, 10 Feb 2020 12:48:58 +0000 Subject: [PATCH 19/30] [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 fbbe0165e1098b5342e5d58d3c83e950301cc40f Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 10 Feb 2020 14:10:06 +0000 Subject: [PATCH 20/30] [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 e69316c9ad2455b525d2f8161a6ba6473153c25c Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Mon, 9 Mar 2020 15:36:48 +0000 Subject: [PATCH 21/30] 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 8a863e705aa87a032844c76909a128eb8bf2b407 Mon Sep 17 00:00:00 2001 From: ps-tubtim Date: Thu, 12 Mar 2020 13:31:15 +0700 Subject: [PATCH 22/30] [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 b7b38ae6bf9f04be7a15b58800cafba41aad1d6f Mon Sep 17 00:00:00 2001 From: ps-tubtim Date: Wed, 9 Sep 2020 10:32:25 +0700 Subject: [PATCH 23/30] [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 8f97fb5d1b6227be2072ffa6499091fd3ba90043 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Mon, 14 Sep 2020 12:02:14 +0000 Subject: [PATCH 24/30] [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 a4480ae3c5fe5d5e289656ec1fa0803b17e49e6f Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 22 Nov 2020 18:16:32 +0000 Subject: [PATCH 25/30] 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 23d8224d8418bd73e717ecac06d9e4313d329508 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 17 Dec 2020 04:24:29 +0000 Subject: [PATCH 26/30] [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 fffc292d51975bf40e99f771641eaf91659fa817 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 17 Dec 2020 06:18:29 +0000 Subject: [PATCH 27/30] [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 1288b62c94386201be00cae0edec60abcdf5107d Mon Sep 17 00:00:00 2001 From: Cas Vissers Date: Tue, 15 Jun 2021 12:05:15 +0000 Subject: [PATCH 28/30] 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 9ac5bbcbc7231133347c4fd29d9e3447db13da2e Mon Sep 17 00:00:00 2001 From: janikvonrotz Date: Mon, 31 Oct 2022 08:38:22 +0100 Subject: [PATCH 29/30] [IMP] mrp_production_note: black, isort, prettier --- setup/mrp_production_note/setup.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 setup/mrp_production_note/setup.py diff --git a/setup/mrp_production_note/setup.py b/setup/mrp_production_note/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/mrp_production_note/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From ae3433df56c6f0ee572b2b0df71828cc8a4f3949 Mon Sep 17 00:00:00 2001 From: janikvonrotz Date: Mon, 31 Oct 2022 08:40:09 +0100 Subject: [PATCH 30/30] [MIG] mrp_production_note: Migration to 14.0 --- mrp_production_note/__manifest__.py | 7 ++----- setup/mrp_production_note/odoo/addons/mrp_production_note | 1 + 2 files changed, 3 insertions(+), 5 deletions(-) create mode 120000 setup/mrp_production_note/odoo/addons/mrp_production_note 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"], diff --git a/setup/mrp_production_note/odoo/addons/mrp_production_note b/setup/mrp_production_note/odoo/addons/mrp_production_note new file mode 120000 index 000000000..64643ae78 --- /dev/null +++ b/setup/mrp_production_note/odoo/addons/mrp_production_note @@ -0,0 +1 @@ +../../../../mrp_production_note \ No newline at end of file