From fab4ffc1275ea7afa02882883cfbb05fdc1bae28 Mon Sep 17 00:00:00 2001 From: mikevhe18 Date: Fri, 14 Oct 2016 19:58:40 +0700 Subject: [PATCH 01/29] Adding website_sale_cart_selectable (#134) [ADD] website_sale_cart_selectable Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/README.rst | 74 ++++++++++++++++++ website_sale_cart_selectable/__init__.py | 5 ++ website_sale_cart_selectable/__openerp__.py | 19 +++++ .../models/__init__.py | 5 ++ .../models/product.py | 14 ++++ .../static/description/icon.png | Bin 0 -> 9455 bytes .../views/product_view.xml | 17 ++++ .../views/website_sale_template.xml | 27 +++++++ 8 files changed, 161 insertions(+) create mode 100644 website_sale_cart_selectable/README.rst create mode 100644 website_sale_cart_selectable/__init__.py create mode 100644 website_sale_cart_selectable/__openerp__.py create mode 100644 website_sale_cart_selectable/models/__init__.py create mode 100644 website_sale_cart_selectable/models/product.py create mode 100644 website_sale_cart_selectable/static/description/icon.png create mode 100644 website_sale_cart_selectable/views/product_view.xml create mode 100644 website_sale_cart_selectable/views/website_sale_template.xml diff --git a/website_sale_cart_selectable/README.rst b/website_sale_cart_selectable/README.rst new file mode 100644 index 0000000000..0a173052cb --- /dev/null +++ b/website_sale_cart_selectable/README.rst @@ -0,0 +1,74 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +============================ +Website Sale Cart Selectable +============================ + +This module was written to extend the functionality of the website to control +button add to cart. Button add to cart can now be set to be published or not. + +Installation +============ + +To install this module, you need to: + +1. Clone the branch 8.0 of the repository https://github.com/OCA/e-commerce +2. Add the path to this repository in your configuration (addons-path) +3. Update the module list +4. Go to menu *Setting -> Modules -> Local Modules* +5. Search For *Website Sale Cart Selectable* +6. Install the module + +Usage +===== + +To use this module, you need to: + +1. Go to menu *Sales -> Products -> Products* +2. Edit or create one. +3. Within the *Sales* tab, there will be a new field named *Button Add To Cart* +4. If you want the button add to cart visible on the website, just click into *Published*. + If you dont want the button add to cart visible on the website, just click into *Not Published* + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/113/8.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Michael Viriyananda + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/website_sale_cart_selectable/__init__.py b/website_sale_cart_selectable/__init__.py new file mode 100644 index 0000000000..da264b0be3 --- /dev/null +++ b/website_sale_cart_selectable/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2016 OpenSynergy Indonesia +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import models diff --git a/website_sale_cart_selectable/__openerp__.py b/website_sale_cart_selectable/__openerp__.py new file mode 100644 index 0000000000..bef751e414 --- /dev/null +++ b/website_sale_cart_selectable/__openerp__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# © 2016 OpenSynergy Indonesia +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + 'name': 'Website Sale Cart Selectable', + 'version': '8.0.1.0.0', + 'summary': 'Enables to controlling button add to cart per product', + 'author': 'OpenSynergy Indonesia,Odoo Community Association (OCA)', + 'website': 'https://opensynergy-indonesia.com', + 'category': 'Website', + 'depends': ['website_sale'], + 'data': [ + 'views/product_view.xml', + 'views/website_sale_template.xml' + ], + 'installable': True, + 'license': 'AGPL-3', +} diff --git a/website_sale_cart_selectable/models/__init__.py b/website_sale_cart_selectable/models/__init__.py new file mode 100644 index 0000000000..768378804e --- /dev/null +++ b/website_sale_cart_selectable/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2016 OpenSynergy Indonesia +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import product \ No newline at end of file diff --git a/website_sale_cart_selectable/models/product.py b/website_sale_cart_selectable/models/product.py new file mode 100644 index 0000000000..2f1161c0c5 --- /dev/null +++ b/website_sale_cart_selectable/models/product.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# © 2016 OpenSynergy Indonesia +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp import fields, models + + +class ProductTemplate(models.Model): + _inherit = 'product.template' + + website_btn_addtocart_published = fields.Boolean( + string='Button Add To Cart', + copy=False, + default=True) diff --git a/website_sale_cart_selectable/static/description/icon.png b/website_sale_cart_selectable/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 diff --git a/website_sale_cart_selectable/views/product_view.xml b/website_sale_cart_selectable/views/product_view.xml new file mode 100644 index 0000000000..c42098374e --- /dev/null +++ b/website_sale_cart_selectable/views/product_view.xml @@ -0,0 +1,17 @@ + + + + + + Product Add To Cart + product.template + + + + + + + + + + diff --git a/website_sale_cart_selectable/views/website_sale_template.xml b/website_sale_cart_selectable/views/website_sale_template.xml new file mode 100644 index 0000000000..6c6c78a210 --- /dev/null +++ b/website_sale_cart_selectable/views/website_sale_template.xml @@ -0,0 +1,27 @@ + + + + + + + + + + From f488bbe9e216bbdd8c024c0a43011d8722162a7c Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Mon, 28 Nov 2016 22:25:49 -0500 Subject: [PATCH 02/29] OCA Transbot updated translations from Transifex Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/i18n/ca.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/de.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/es.po | 35 ++++++++++++++++++++++ website_sale_cart_selectable/i18n/es_MX.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/fi.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/fr.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/fr_CH.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/hr.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/hr_HR.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/it.po | 35 ++++++++++++++++++++++ website_sale_cart_selectable/i18n/pt_BR.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/ro.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/sl.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/tr_TR.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/vi_VN.po | 34 +++++++++++++++++++++ website_sale_cart_selectable/i18n/zh_CN.po | 34 +++++++++++++++++++++ 16 files changed, 546 insertions(+) create mode 100644 website_sale_cart_selectable/i18n/ca.po create mode 100644 website_sale_cart_selectable/i18n/de.po create mode 100644 website_sale_cart_selectable/i18n/es.po create mode 100644 website_sale_cart_selectable/i18n/es_MX.po create mode 100644 website_sale_cart_selectable/i18n/fi.po create mode 100644 website_sale_cart_selectable/i18n/fr.po create mode 100644 website_sale_cart_selectable/i18n/fr_CH.po create mode 100644 website_sale_cart_selectable/i18n/hr.po create mode 100644 website_sale_cart_selectable/i18n/hr_HR.po create mode 100644 website_sale_cart_selectable/i18n/it.po create mode 100644 website_sale_cart_selectable/i18n/pt_BR.po create mode 100644 website_sale_cart_selectable/i18n/ro.po create mode 100644 website_sale_cart_selectable/i18n/sl.po create mode 100644 website_sale_cart_selectable/i18n/tr_TR.po create mode 100644 website_sale_cart_selectable/i18n/vi_VN.po create mode 100644 website_sale_cart_selectable/i18n/zh_CN.po diff --git a/website_sale_cart_selectable/i18n/ca.po b/website_sale_cart_selectable/i18n/ca.po new file mode 100644 index 0000000000..91b24b796f --- /dev/null +++ b/website_sale_cart_selectable/i18n/ca.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Carles Antoli , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 02:41+0000\n" +"PO-Revision-Date: 2017-01-14 02:41+0000\n" +"Last-Translator: Carles Antoli , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Plantilla del producte" diff --git a/website_sale_cart_selectable/i18n/de.po b/website_sale_cart_selectable/i18n/de.po new file mode 100644 index 0000000000..8a8c1d8d6d --- /dev/null +++ b/website_sale_cart_selectable/i18n/de.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-24 03:40+0000\n" +"PO-Revision-Date: 2016-11-24 03:40+0000\n" +"Last-Translator: Rudolf Schnapka , 2016\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Produktvorlage" diff --git a/website_sale_cart_selectable/i18n/es.po b/website_sale_cart_selectable/i18n/es.po new file mode 100644 index 0000000000..908349e0f1 --- /dev/null +++ b/website_sale_cart_selectable/i18n/es.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Pedro M. Baeza , 2016 +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-24 03:40+0000\n" +"PO-Revision-Date: 2016-11-24 03:40+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "Añadir al carro" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "Botón \"Añadir al carro\"" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Plantilla de producto" diff --git a/website_sale_cart_selectable/i18n/es_MX.po b/website_sale_cart_selectable/i18n/es_MX.po new file mode 100644 index 0000000000..ccdd956e8c --- /dev/null +++ b/website_sale_cart_selectable/i18n/es_MX.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Juan González , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-07 12:28+0000\n" +"PO-Revision-Date: 2016-12-07 12:28+0000\n" +"Last-Translator: Juan González , 2016\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: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Plantilla del producto" diff --git a/website_sale_cart_selectable/i18n/fi.po b/website_sale_cart_selectable/i18n/fi.po new file mode 100644 index 0000000000..de84c0d629 --- /dev/null +++ b/website_sale_cart_selectable/i18n/fi.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-24 03:40+0000\n" +"PO-Revision-Date: 2016-11-24 03:40+0000\n" +"Last-Translator: OCA Transbot , 2016\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: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Tuotteen malli" diff --git a/website_sale_cart_selectable/i18n/fr.po b/website_sale_cart_selectable/i18n/fr.po new file mode 100644 index 0000000000..1450172c27 --- /dev/null +++ b/website_sale_cart_selectable/i18n/fr.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Pierre Verkest , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-24 03:40+0000\n" +"PO-Revision-Date: 2016-11-24 03:40+0000\n" +"Last-Translator: Pierre Verkest , 2016\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: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Modèle de produit" diff --git a/website_sale_cart_selectable/i18n/fr_CH.po b/website_sale_cart_selectable/i18n/fr_CH.po new file mode 100644 index 0000000000..e3be1b2b58 --- /dev/null +++ b/website_sale_cart_selectable/i18n/fr_CH.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# leemannd , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 11:29+0000\n" +"PO-Revision-Date: 2016-11-29 11:29+0000\n" +"Last-Translator: leemannd , 2016\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Template de produit" diff --git a/website_sale_cart_selectable/i18n/hr.po b/website_sale_cart_selectable/i18n/hr.po new file mode 100644 index 0000000000..f1507b2483 --- /dev/null +++ b/website_sale_cart_selectable/i18n/hr.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-24 03:40+0000\n" +"PO-Revision-Date: 2016-11-24 03:40+0000\n" +"Last-Translator: Bole , 2016\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: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" diff --git a/website_sale_cart_selectable/i18n/hr_HR.po b/website_sale_cart_selectable/i18n/hr_HR.po new file mode 100644 index 0000000000..4df4d5d86b --- /dev/null +++ b/website_sale_cart_selectable/i18n/hr_HR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-24 03:40+0000\n" +"PO-Revision-Date: 2016-11-24 03:40+0000\n" +"Last-Translator: Bole , 2016\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: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" diff --git a/website_sale_cart_selectable/i18n/it.po b/website_sale_cart_selectable/i18n/it.po new file mode 100644 index 0000000000..edaf0d230a --- /dev/null +++ b/website_sale_cart_selectable/i18n/it.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# OCA Transbot , 2016 +# Paolo Valier , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 02:50+0000\n" +"PO-Revision-Date: 2017-03-28 02:50+0000\n" +"Last-Translator: Paolo Valier , 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: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "Aggiungi al Carrello" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "Pulsante Aggiungi al Carrello" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Template Prodotto" diff --git a/website_sale_cart_selectable/i18n/pt_BR.po b/website_sale_cart_selectable/i18n/pt_BR.po new file mode 100644 index 0000000000..4dc9f3e769 --- /dev/null +++ b/website_sale_cart_selectable/i18n/pt_BR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Claudio Araujo Santos , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-24 03:40+0000\n" +"PO-Revision-Date: 2016-11-24 03:40+0000\n" +"Last-Translator: Claudio Araujo Santos , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Modelo Produto" diff --git a/website_sale_cart_selectable/i18n/ro.po b/website_sale_cart_selectable/i18n/ro.po new file mode 100644 index 0000000000..c5e5e5155b --- /dev/null +++ b/website_sale_cart_selectable/i18n/ro.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-24 03:40+0000\n" +"PO-Revision-Date: 2016-11-24 03:40+0000\n" +"Last-Translator: OCA Transbot , 2016\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: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Produs șablon" diff --git a/website_sale_cart_selectable/i18n/sl.po b/website_sale_cart_selectable/i18n/sl.po new file mode 100644 index 0000000000..e5cc117e77 --- /dev/null +++ b/website_sale_cart_selectable/i18n/sl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-24 03:40+0000\n" +"PO-Revision-Date: 2016-11-24 03:40+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\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: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "Dodaj v voziček" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "Gumb dodaj v voziček" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Predloga proizvoda" diff --git a/website_sale_cart_selectable/i18n/tr_TR.po b/website_sale_cart_selectable/i18n/tr_TR.po new file mode 100644 index 0000000000..2bef56b368 --- /dev/null +++ b/website_sale_cart_selectable/i18n/tr_TR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-03 18:41+0000\n" +"PO-Revision-Date: 2017-01-03 18:41+0000\n" +"Last-Translator: Ozge Altinisik , 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: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Ürün şablonu" diff --git a/website_sale_cart_selectable/i18n/vi_VN.po b/website_sale_cart_selectable/i18n/vi_VN.po new file mode 100644 index 0000000000..ad73ecaa82 --- /dev/null +++ b/website_sale_cart_selectable/i18n/vi_VN.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-24 03:40+0000\n" +"PO-Revision-Date: 2016-11-24 03:40+0000\n" +"Last-Translator: OCA Transbot , 2016\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: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Mẫu sản phẩm" diff --git a/website_sale_cart_selectable/i18n/zh_CN.po b/website_sale_cart_selectable/i18n/zh_CN.po new file mode 100644 index 0000000000..5790775538 --- /dev/null +++ b/website_sale_cart_selectable/i18n/zh_CN.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Jeffery Chen Fan , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-24 03:40+0000\n" +"PO-Revision-Date: 2016-11-24 03:40+0000\n" +"Last-Translator: Jeffery Chen Fan , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sale_cart_selectable +#: view:website:website_sale.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: field:product.template,website_btn_addtocart_published:0 +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "产品模板" From af830e5a83cddc324e082b5cfe68daca4a7e08c3 Mon Sep 17 00:00:00 2001 From: David Vidal Date: Thu, 13 Jul 2017 18:19:40 +0200 Subject: [PATCH 03/29] [MIG] website_sale_cart_selectable: Migration to 10.0 Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/README.rst | 31 +++++++------------ website_sale_cart_selectable/__init__.py | 2 -- .../{__openerp__.py => __manifest__.py} | 11 ++++--- .../models/__init__.py | 4 +-- .../models/product.py | 7 ++--- .../views/product_view.xml | 10 +++--- .../views/website_sale_template.xml | 8 ++--- 7 files changed, 29 insertions(+), 44 deletions(-) rename website_sale_cart_selectable/{__openerp__.py => __manifest__.py} (56%) diff --git a/website_sale_cart_selectable/README.rst b/website_sale_cart_selectable/README.rst index 0a173052cb..a309153775 100644 --- a/website_sale_cart_selectable/README.rst +++ b/website_sale_cart_selectable/README.rst @@ -6,35 +6,25 @@ Website Sale Cart Selectable ============================ -This module was written to extend the functionality of the website to control -button add to cart. Button add to cart can now be set to be published or not. - -Installation -============ - -To install this module, you need to: - -1. Clone the branch 8.0 of the repository https://github.com/OCA/e-commerce -2. Add the path to this repository in your configuration (addons-path) -3. Update the module list -4. Go to menu *Setting -> Modules -> Local Modules* -5. Search For *Website Sale Cart Selectable* -6. Install the module +This module extends the functionality of the website to improve the control on +the button "Add to cart". Button "Add to cart" can now be set to be published +or not. Usage ===== To use this module, you need to: -1. Go to menu *Sales -> Products -> Products* -2. Edit or create one. -3. Within the *Sales* tab, there will be a new field named *Button Add To Cart* -4. If you want the button add to cart visible on the website, just click into *Published*. - If you dont want the button add to cart visible on the website, just click into *Not Published* +#. Go to menu *Sales -> Products -> Products* +#. Edit or create one. +#. Within the *Sales* tab, there will be a new field named *Button Add To + Cart* +#. Set it or unset it to enable or disable the *Add To Cart* button in that + product. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/113/8.0 + :target: https://runbot.odoo-community.org/runbot/113/10.0 Bug Tracker =========== @@ -57,6 +47,7 @@ Contributors ------------ * Michael Viriyananda +* David Vidal Maintainer ---------- diff --git a/website_sale_cart_selectable/__init__.py b/website_sale_cart_selectable/__init__.py index da264b0be3..cde864bae2 100644 --- a/website_sale_cart_selectable/__init__.py +++ b/website_sale_cart_selectable/__init__.py @@ -1,5 +1,3 @@ # -*- coding: utf-8 -*- -# © 2016 OpenSynergy Indonesia -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import models diff --git a/website_sale_cart_selectable/__openerp__.py b/website_sale_cart_selectable/__manifest__.py similarity index 56% rename from website_sale_cart_selectable/__openerp__.py rename to website_sale_cart_selectable/__manifest__.py index bef751e414..e0638dfaad 100644 --- a/website_sale_cart_selectable/__openerp__.py +++ b/website_sale_cart_selectable/__manifest__.py @@ -1,12 +1,15 @@ # -*- coding: utf-8 -*- -# © 2016 OpenSynergy Indonesia +# Copyright 2016 OpenSynergy Indonesia +# Copyright 2017 Tecnativa - David Vidal # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Website Sale Cart Selectable', - 'version': '8.0.1.0.0', - 'summary': 'Enables to controlling button add to cart per product', - 'author': 'OpenSynergy Indonesia,Odoo Community Association (OCA)', + 'version': '10.0.1.0.0', + 'summary': 'Enables to control button Add to cart display per product', + 'author': 'OpenSynergy Indonesia, ' + 'Tecnativa, ' + 'Odoo Community Association (OCA)', 'website': 'https://opensynergy-indonesia.com', 'category': 'Website', 'depends': ['website_sale'], diff --git a/website_sale_cart_selectable/models/__init__.py b/website_sale_cart_selectable/models/__init__.py index 768378804e..d7d73083c4 100644 --- a/website_sale_cart_selectable/models/__init__.py +++ b/website_sale_cart_selectable/models/__init__.py @@ -1,5 +1,3 @@ # -*- coding: utf-8 -*- -# © 2016 OpenSynergy Indonesia -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from . import product \ No newline at end of file +from . import product diff --git a/website_sale_cart_selectable/models/product.py b/website_sale_cart_selectable/models/product.py index 2f1161c0c5..f43e672594 100644 --- a/website_sale_cart_selectable/models/product.py +++ b/website_sale_cart_selectable/models/product.py @@ -1,14 +1,13 @@ # -*- coding: utf-8 -*- -# © 2016 OpenSynergy Indonesia +# Copyright 2016 OpenSynergy Indonesia # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import fields, models +from odoo import fields, models class ProductTemplate(models.Model): _inherit = 'product.template' website_btn_addtocart_published = fields.Boolean( - string='Button Add To Cart', - copy=False, + string='Button Add To Cart', copy=False, default=True) diff --git a/website_sale_cart_selectable/views/product_view.xml b/website_sale_cart_selectable/views/product_view.xml index c42098374e..387209e1f8 100644 --- a/website_sale_cart_selectable/views/product_view.xml +++ b/website_sale_cart_selectable/views/product_view.xml @@ -1,17 +1,15 @@ - - + Product Add To Cart product.template - - + + - - + diff --git a/website_sale_cart_selectable/views/website_sale_template.xml b/website_sale_cart_selectable/views/website_sale_template.xml index 6c6c78a210..b9e9abb503 100644 --- a/website_sale_cart_selectable/views/website_sale_template.xml +++ b/website_sale_cart_selectable/views/website_sale_template.xml @@ -1,7 +1,6 @@ - - - + + - - + From c557d6529f17469a6d65a6e31f225110be580af9 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 29 Jul 2017 03:29:56 +0200 Subject: [PATCH 04/29] OCA Transbot updated translations from Transifex Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/i18n/es.po | 16 +++++----- website_sale_cart_selectable/i18n/it.po | 16 +++++----- website_sale_cart_selectable/i18n/nl_NL.po | 35 ++++++++++++++++++++++ website_sale_cart_selectable/i18n/sl.po | 15 +++++----- 4 files changed, 59 insertions(+), 23 deletions(-) create mode 100644 website_sale_cart_selectable/i18n/nl_NL.po diff --git a/website_sale_cart_selectable/i18n/es.po b/website_sale_cart_selectable/i18n/es.po index 908349e0f1..120ff51b01 100644 --- a/website_sale_cart_selectable/i18n/es.po +++ b/website_sale_cart_selectable/i18n/es.po @@ -3,15 +3,14 @@ # * website_sale_cart_selectable # # Translators: -# Pedro M. Baeza , 2016 -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-24 03:40+0000\n" -"PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-07-29 00:53+0000\n" +"PO-Revision-Date: 2017-07-29 00:53+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,12 +19,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_sale_cart_selectable -#: view:website:website_sale.product +#: model:ir.ui.view,arch_db:website_sale_cart_selectable.product msgid "Add to Cart" msgstr "Añadir al carro" #. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "Botón \"Añadir al carro\"" diff --git a/website_sale_cart_selectable/i18n/it.po b/website_sale_cart_selectable/i18n/it.po index edaf0d230a..43b9c5ecb2 100644 --- a/website_sale_cart_selectable/i18n/it.po +++ b/website_sale_cart_selectable/i18n/it.po @@ -3,15 +3,14 @@ # * website_sale_cart_selectable # # Translators: -# OCA Transbot , 2016 -# Paolo Valier , 2017 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-28 02:50+0000\n" -"PO-Revision-Date: 2017-03-28 02:50+0000\n" -"Last-Translator: Paolo Valier , 2017\n" +"POT-Creation-Date: 2017-07-29 00:53+0000\n" +"PO-Revision-Date: 2017-07-29 00:53+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" @@ -20,12 +19,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_sale_cart_selectable -#: view:website:website_sale.product +#: model:ir.ui.view,arch_db:website_sale_cart_selectable.product msgid "Add to Cart" msgstr "Aggiungi al Carrello" #. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "Pulsante Aggiungi al Carrello" diff --git a/website_sale_cart_selectable/i18n/nl_NL.po b/website_sale_cart_selectable/i18n/nl_NL.po new file mode 100644 index 0000000000..6edd0c2d79 --- /dev/null +++ b/website_sale_cart_selectable/i18n/nl_NL.po @@ -0,0 +1,35 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-29 00:53+0000\n" +"PO-Revision-Date: 2017-07-29 00:53+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: website_sale_cart_selectable +#: model:ir.ui.view,arch_db:website_sale_cart_selectable.product +msgid "Add to Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "Productsjabloon" diff --git a/website_sale_cart_selectable/i18n/sl.po b/website_sale_cart_selectable/i18n/sl.po index e5cc117e77..3a2de1844a 100644 --- a/website_sale_cart_selectable/i18n/sl.po +++ b/website_sale_cart_selectable/i18n/sl.po @@ -3,14 +3,14 @@ # * website_sale_cart_selectable # # Translators: -# Matjaž Mozetič , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-24 03:40+0000\n" -"PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: Matjaž Mozetič , 2016\n" +"POT-Creation-Date: 2017-07-29 00:53+0000\n" +"PO-Revision-Date: 2017-07-29 00:53+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" @@ -19,12 +19,13 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #. module: website_sale_cart_selectable -#: view:website:website_sale.product +#: model:ir.ui.view,arch_db:website_sale_cart_selectable.product msgid "Add to Cart" msgstr "Dodaj v voziček" #. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "Gumb dodaj v voziček" From 92e27551df3bf4c2bc71470c0fa4dda35d3a7ce4 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 11 Oct 2017 18:56:51 +0200 Subject: [PATCH 05/29] [FIX+IMP] website_sale_cart_selectable: Changed + better selectors Odoo upstream has changed its classes, and the selectors taken were very variable. Use better ones. Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/__manifest__.py | 2 +- .../views/website_sale_template.xml | 32 ++++++++----------- 2 files changed, 14 insertions(+), 20 deletions(-) diff --git a/website_sale_cart_selectable/__manifest__.py b/website_sale_cart_selectable/__manifest__.py index e0638dfaad..faec4c641f 100644 --- a/website_sale_cart_selectable/__manifest__.py +++ b/website_sale_cart_selectable/__manifest__.py @@ -5,7 +5,7 @@ { 'name': 'Website Sale Cart Selectable', - 'version': '10.0.1.0.0', + 'version': '10.0.1.1.0', 'summary': 'Enables to control button Add to cart display per product', 'author': 'OpenSynergy Indonesia, ' 'Tecnativa, ' diff --git a/website_sale_cart_selectable/views/website_sale_template.xml b/website_sale_cart_selectable/views/website_sale_template.xml index b9e9abb503..1192ac6c70 100644 --- a/website_sale_cart_selectable/views/website_sale_template.xml +++ b/website_sale_cart_selectable/views/website_sale_template.xml @@ -1,25 +1,19 @@ - + - + From 3fee320e04cac9fcb3cf71d35115ad29ced4a5e0 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 16 Dec 2017 04:30:26 +0100 Subject: [PATCH 06/29] OCA Transbot updated translations from Transifex Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/i18n/ca.po | 12 +++------ website_sale_cart_selectable/i18n/de.po | 12 +++------ website_sale_cart_selectable/i18n/es.po | 13 +++------ website_sale_cart_selectable/i18n/es_MX.po | 15 +++++------ website_sale_cart_selectable/i18n/fi.po | 12 +++------ website_sale_cart_selectable/i18n/fr.po | 12 +++------ website_sale_cart_selectable/i18n/fr_CH.po | 15 +++++------ website_sale_cart_selectable/i18n/hr.po | 15 +++++------ website_sale_cart_selectable/i18n/hr_HR.po | 18 ++++++------- website_sale_cart_selectable/i18n/it.po | 13 +++------ website_sale_cart_selectable/i18n/nl_NL.po | 12 +++------ website_sale_cart_selectable/i18n/pt_BR.po | 18 ++++++------- website_sale_cart_selectable/i18n/ro.po | 15 +++++------ website_sale_cart_selectable/i18n/sl.po | 16 +++++------ website_sale_cart_selectable/i18n/tr_TR.po | 15 +++++------ website_sale_cart_selectable/i18n/vi_VN.po | 15 +++++------ .../i18n/website_sale_cart_selectable.pot | 27 +++++++++++++++++++ website_sale_cart_selectable/i18n/zh_CN.po | 15 +++++------ 18 files changed, 119 insertions(+), 151 deletions(-) create mode 100644 website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot diff --git a/website_sale_cart_selectable/i18n/ca.po b/website_sale_cart_selectable/i18n/ca.po index 91b24b796f..4eb0890e81 100644 --- a/website_sale_cart_selectable/i18n/ca.po +++ b/website_sale_cart_selectable/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # Carles Antoli , 2017 msgid "" @@ -12,19 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-01-14 02:41+0000\n" "Last-Translator: Carles Antoli , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/de.po b/website_sale_cart_selectable/i18n/de.po index 8a8c1d8d6d..90b6951773 100644 --- a/website_sale_cart_selectable/i18n/de.po +++ b/website_sale_cart_selectable/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # Rudolf Schnapka , 2016 msgid "" @@ -12,19 +12,15 @@ msgstr "" "PO-Revision-Date: 2016-11-24 03:40+0000\n" "Last-Translator: Rudolf Schnapka , 2016\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/es.po b/website_sale_cart_selectable/i18n/es.po index 120ff51b01..70f6aafc96 100644 --- a/website_sale_cart_selectable/i18n/es.po +++ b/website_sale_cart_selectable/i18n/es.po @@ -1,28 +1,23 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # OCA Transbot , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-29 00:53+0000\n" -"PO-Revision-Date: 2017-07-29 00:53+0000\n" +"POT-Creation-Date: 2017-12-16 01:57+0000\n" +"PO-Revision-Date: 2017-12-16 01:57+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: website_sale_cart_selectable -#: model:ir.ui.view,arch_db:website_sale_cart_selectable.product -msgid "Add to Cart" -msgstr "Añadir al carro" - #. module: website_sale_cart_selectable #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published diff --git a/website_sale_cart_selectable/i18n/es_MX.po b/website_sale_cart_selectable/i18n/es_MX.po index ccdd956e8c..312009ef53 100644 --- a/website_sale_cart_selectable/i18n/es_MX.po +++ b/website_sale_cart_selectable/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # Juan González , 2016 msgid "" @@ -11,20 +11,17 @@ msgstr "" "POT-Creation-Date: 2016-12-07 12:28+0000\n" "PO-Revision-Date: 2016-12-07 12:28+0000\n" "Last-Translator: Juan González , 2016\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: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/fi.po b/website_sale_cart_selectable/i18n/fi.po index de84c0d629..677ecbd622 100644 --- a/website_sale_cart_selectable/i18n/fi.po +++ b/website_sale_cart_selectable/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,19 +12,15 @@ msgstr "" "PO-Revision-Date: 2016-11-24 03:40+0000\n" "Last-Translator: OCA Transbot , 2016\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: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/fr.po b/website_sale_cart_selectable/i18n/fr.po index 1450172c27..8c142d1ef6 100644 --- a/website_sale_cart_selectable/i18n/fr.po +++ b/website_sale_cart_selectable/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # Pierre Verkest , 2016 msgid "" @@ -12,19 +12,15 @@ msgstr "" "PO-Revision-Date: 2016-11-24 03:40+0000\n" "Last-Translator: Pierre Verkest , 2016\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: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/fr_CH.po b/website_sale_cart_selectable/i18n/fr_CH.po index e3be1b2b58..bb8f98fc31 100644 --- a/website_sale_cart_selectable/i18n/fr_CH.po +++ b/website_sale_cart_selectable/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # leemannd , 2016 msgid "" @@ -11,20 +11,17 @@ msgstr "" "POT-Creation-Date: 2016-11-29 11:29+0000\n" "PO-Revision-Date: 2016-11-29 11:29+0000\n" "Last-Translator: leemannd , 2016\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/hr.po b/website_sale_cart_selectable/i18n/hr.po index f1507b2483..f96378afbf 100644 --- a/website_sale_cart_selectable/i18n/hr.po +++ b/website_sale_cart_selectable/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # Bole , 2016 msgid "" @@ -12,19 +12,16 @@ msgstr "" "PO-Revision-Date: 2016-11-24 03:40+0000\n" "Last-Translator: Bole , 2016\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" - -#. module: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" +"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: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/hr_HR.po b/website_sale_cart_selectable/i18n/hr_HR.po index 4df4d5d86b..52ab7a0eb4 100644 --- a/website_sale_cart_selectable/i18n/hr_HR.po +++ b/website_sale_cart_selectable/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # Bole , 2016 msgid "" @@ -11,20 +11,18 @@ msgstr "" "POT-Creation-Date: 2016-11-24 03:40+0000\n" "PO-Revision-Date: 2016-11-24 03:40+0000\n" "Last-Translator: Bole , 2016\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" - -#. module: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" +"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: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/it.po b/website_sale_cart_selectable/i18n/it.po index 43b9c5ecb2..8ee66e9b86 100644 --- a/website_sale_cart_selectable/i18n/it.po +++ b/website_sale_cart_selectable/i18n/it.po @@ -1,28 +1,23 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # OCA Transbot , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-29 00:53+0000\n" -"PO-Revision-Date: 2017-07-29 00:53+0000\n" +"POT-Creation-Date: 2017-12-16 01:57+0000\n" +"PO-Revision-Date: 2017-12-16 01:57+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: website_sale_cart_selectable -#: model:ir.ui.view,arch_db:website_sale_cart_selectable.product -msgid "Add to Cart" -msgstr "Aggiungi al Carrello" - #. module: website_sale_cart_selectable #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published diff --git a/website_sale_cart_selectable/i18n/nl_NL.po b/website_sale_cart_selectable/i18n/nl_NL.po index 6edd0c2d79..f8c11a00c7 100644 --- a/website_sale_cart_selectable/i18n/nl_NL.po +++ b/website_sale_cart_selectable/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,18 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-07-29 00:53+0000\n" "PO-Revision-Date: 2017-07-29 00:53+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: website_sale_cart_selectable -#: model:ir.ui.view,arch_db:website_sale_cart_selectable.product -msgid "Add to Cart" -msgstr "" - #. module: website_sale_cart_selectable #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published diff --git a/website_sale_cart_selectable/i18n/pt_BR.po b/website_sale_cart_selectable/i18n/pt_BR.po index 4dc9f3e769..9d1e88d5c7 100644 --- a/website_sale_cart_selectable/i18n/pt_BR.po +++ b/website_sale_cart_selectable/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # Claudio Araujo Santos , 2016 msgid "" @@ -10,21 +10,19 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-11-24 03:40+0000\n" "PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: Claudio Araujo Santos , 2016\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Last-Translator: Claudio Araujo Santos , " +"2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/ro.po b/website_sale_cart_selectable/i18n/ro.po index c5e5e5155b..3c2990dc79 100644 --- a/website_sale_cart_selectable/i18n/ro.po +++ b/website_sale_cart_selectable/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,19 +12,16 @@ msgstr "" "PO-Revision-Date: 2016-11-24 03:40+0000\n" "Last-Translator: OCA Transbot , 2016\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" - -#. module: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/sl.po b/website_sale_cart_selectable/i18n/sl.po index 3a2de1844a..d1222ed886 100644 --- a/website_sale_cart_selectable/i18n/sl.po +++ b/website_sale_cart_selectable/i18n/sl.po @@ -1,27 +1,23 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # OCA Transbot , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-29 00:53+0000\n" -"PO-Revision-Date: 2017-07-29 00:53+0000\n" +"POT-Creation-Date: 2017-12-16 01:57+0000\n" +"PO-Revision-Date: 2017-12-16 01:57+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" - -#. module: website_sale_cart_selectable -#: model:ir.ui.view,arch_db:website_sale_cart_selectable.product -msgid "Add to Cart" -msgstr "Dodaj v voziček" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: website_sale_cart_selectable #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published diff --git a/website_sale_cart_selectable/i18n/tr_TR.po b/website_sale_cart_selectable/i18n/tr_TR.po index 2bef56b368..bb4f59eed5 100644 --- a/website_sale_cart_selectable/i18n/tr_TR.po +++ b/website_sale_cart_selectable/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # Ozge Altinisik , 2017 msgid "" @@ -11,20 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-01-03 18:41+0000\n" "PO-Revision-Date: 2017-01-03 18:41+0000\n" "Last-Translator: Ozge Altinisik , 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: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/vi_VN.po b/website_sale_cart_selectable/i18n/vi_VN.po index ad73ecaa82..2ad7deafc6 100644 --- a/website_sale_cart_selectable/i18n/vi_VN.po +++ b/website_sale_cart_selectable/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,20 +11,17 @@ msgstr "" "POT-Creation-Date: 2016-11-24 03:40+0000\n" "PO-Revision-Date: 2016-11-24 03:40+0000\n" "Last-Translator: OCA Transbot , 2016\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: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" diff --git a/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot b/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot new file mode 100644 index 0000000000..da826256c6 --- /dev/null +++ b/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +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: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "" + diff --git a/website_sale_cart_selectable/i18n/zh_CN.po b/website_sale_cart_selectable/i18n/zh_CN.po index 5790775538..1bf6cd4360 100644 --- a/website_sale_cart_selectable/i18n/zh_CN.po +++ b/website_sale_cart_selectable/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_sale_cart_selectable -# +# # Translators: # Jeffery Chen Fan , 2016 msgid "" @@ -11,20 +11,17 @@ msgstr "" "POT-Creation-Date: 2016-11-24 03:40+0000\n" "PO-Revision-Date: 2016-11-24 03:40+0000\n" "Last-Translator: Jeffery Chen Fan , 2016\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: website_sale_cart_selectable -#: view:website:website_sale.product -msgid "Add to Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: field:product.template,website_btn_addtocart_published:0 +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" msgstr "" From 788fa9c195d8ad0921b9f2da4abf0e05188746c3 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Wed, 28 Nov 2018 15:17:39 +0000 Subject: [PATCH 07/29] Update translation files Updated by Update PO files to match POT (msgmerge) hook in Weblate. Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/i18n/ca.po | 1 + website_sale_cart_selectable/i18n/de.po | 1 + website_sale_cart_selectable/i18n/es.po | 1 + website_sale_cart_selectable/i18n/es_MX.po | 1 + website_sale_cart_selectable/i18n/fi.po | 1 + website_sale_cart_selectable/i18n/fr.po | 1 + website_sale_cart_selectable/i18n/fr_CH.po | 1 + website_sale_cart_selectable/i18n/hr.po | 1 + website_sale_cart_selectable/i18n/hr_HR.po | 1 + website_sale_cart_selectable/i18n/it.po | 1 + website_sale_cart_selectable/i18n/nl_NL.po | 1 + website_sale_cart_selectable/i18n/pt_BR.po | 1 + website_sale_cart_selectable/i18n/ro.po | 1 + website_sale_cart_selectable/i18n/sl.po | 1 + website_sale_cart_selectable/i18n/tr_TR.po | 1 + website_sale_cart_selectable/i18n/vi_VN.po | 1 + website_sale_cart_selectable/i18n/zh_CN.po | 1 + 17 files changed, 17 insertions(+) diff --git a/website_sale_cart_selectable/i18n/ca.po b/website_sale_cart_selectable/i18n/ca.po index 4eb0890e81..b3418e459d 100644 --- a/website_sale_cart_selectable/i18n/ca.po +++ b/website_sale_cart_selectable/i18n/ca.po @@ -19,6 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/de.po b/website_sale_cart_selectable/i18n/de.po index 90b6951773..0b1c1edefc 100644 --- a/website_sale_cart_selectable/i18n/de.po +++ b/website_sale_cart_selectable/i18n/de.po @@ -19,6 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/es.po b/website_sale_cart_selectable/i18n/es.po index 70f6aafc96..3bcfcd3282 100644 --- a/website_sale_cart_selectable/i18n/es.po +++ b/website_sale_cart_selectable/i18n/es.po @@ -19,6 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/es_MX.po b/website_sale_cart_selectable/i18n/es_MX.po index 312009ef53..997dac4ea9 100644 --- a/website_sale_cart_selectable/i18n/es_MX.po +++ b/website_sale_cart_selectable/i18n/es_MX.po @@ -20,6 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/fi.po b/website_sale_cart_selectable/i18n/fi.po index 677ecbd622..2733747498 100644 --- a/website_sale_cart_selectable/i18n/fi.po +++ b/website_sale_cart_selectable/i18n/fi.po @@ -19,6 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/fr.po b/website_sale_cart_selectable/i18n/fr.po index 8c142d1ef6..a85ba06f4c 100644 --- a/website_sale_cart_selectable/i18n/fr.po +++ b/website_sale_cart_selectable/i18n/fr.po @@ -19,6 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/fr_CH.po b/website_sale_cart_selectable/i18n/fr_CH.po index bb8f98fc31..9e97cf9b5f 100644 --- a/website_sale_cart_selectable/i18n/fr_CH.po +++ b/website_sale_cart_selectable/i18n/fr_CH.po @@ -20,6 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/hr.po b/website_sale_cart_selectable/i18n/hr.po index f96378afbf..7c6fabbf4f 100644 --- a/website_sale_cart_selectable/i18n/hr.po +++ b/website_sale_cart_selectable/i18n/hr.po @@ -20,6 +20,7 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/hr_HR.po b/website_sale_cart_selectable/i18n/hr_HR.po index 52ab7a0eb4..0a550b6345 100644 --- a/website_sale_cart_selectable/i18n/hr_HR.po +++ b/website_sale_cart_selectable/i18n/hr_HR.po @@ -21,6 +21,7 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/it.po b/website_sale_cart_selectable/i18n/it.po index 8ee66e9b86..40a48c7f8d 100644 --- a/website_sale_cart_selectable/i18n/it.po +++ b/website_sale_cart_selectable/i18n/it.po @@ -19,6 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/nl_NL.po b/website_sale_cart_selectable/i18n/nl_NL.po index f8c11a00c7..ddf386d4e8 100644 --- a/website_sale_cart_selectable/i18n/nl_NL.po +++ b/website_sale_cart_selectable/i18n/nl_NL.po @@ -20,6 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/pt_BR.po b/website_sale_cart_selectable/i18n/pt_BR.po index 9d1e88d5c7..5675c4c449 100644 --- a/website_sale_cart_selectable/i18n/pt_BR.po +++ b/website_sale_cart_selectable/i18n/pt_BR.po @@ -21,6 +21,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/ro.po b/website_sale_cart_selectable/i18n/ro.po index 3c2990dc79..25bc8709b3 100644 --- a/website_sale_cart_selectable/i18n/ro.po +++ b/website_sale_cart_selectable/i18n/ro.po @@ -20,6 +20,7 @@ msgstr "" "2:1));\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/sl.po b/website_sale_cart_selectable/i18n/sl.po index d1222ed886..74c6cd0ee6 100644 --- a/website_sale_cart_selectable/i18n/sl.po +++ b/website_sale_cart_selectable/i18n/sl.po @@ -20,6 +20,7 @@ msgstr "" "%100==4 ? 2 : 3);\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/tr_TR.po b/website_sale_cart_selectable/i18n/tr_TR.po index bb4f59eed5..3be7d9178f 100644 --- a/website_sale_cart_selectable/i18n/tr_TR.po +++ b/website_sale_cart_selectable/i18n/tr_TR.po @@ -20,6 +20,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/vi_VN.po b/website_sale_cart_selectable/i18n/vi_VN.po index 2ad7deafc6..2ca0f53a91 100644 --- a/website_sale_cart_selectable/i18n/vi_VN.po +++ b/website_sale_cart_selectable/i18n/vi_VN.po @@ -20,6 +20,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" diff --git a/website_sale_cart_selectable/i18n/zh_CN.po b/website_sale_cart_selectable/i18n/zh_CN.po index 1bf6cd4360..773ba3d655 100644 --- a/website_sale_cart_selectable/i18n/zh_CN.po +++ b/website_sale_cart_selectable/i18n/zh_CN.po @@ -20,6 +20,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published msgid "Button Add To Cart" From 8f43feba006e82c28b9b55adcbc32ce625af2e80 Mon Sep 17 00:00:00 2001 From: Chafique Date: Fri, 10 Jul 2020 17:38:13 +0200 Subject: [PATCH 08/29] [MIG] website_sale_cart_selectable: Migration to 12.0 Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/README.rst | 65 ++++++++++++------- website_sale_cart_selectable/__manifest__.py | 31 ++++----- website_sale_cart_selectable/i18n/ca.po | 31 --------- website_sale_cart_selectable/i18n/de.po | 31 --------- website_sale_cart_selectable/i18n/es.po | 31 --------- website_sale_cart_selectable/i18n/es_MX.po | 32 --------- website_sale_cart_selectable/i18n/fi.po | 31 --------- website_sale_cart_selectable/i18n/fr.po | 31 --------- website_sale_cart_selectable/i18n/fr_CH.po | 32 --------- website_sale_cart_selectable/i18n/hr.po | 32 --------- website_sale_cart_selectable/i18n/hr_HR.po | 33 ---------- website_sale_cart_selectable/i18n/it.po | 31 --------- website_sale_cart_selectable/i18n/nl_NL.po | 32 --------- website_sale_cart_selectable/i18n/pt_BR.po | 33 ---------- website_sale_cart_selectable/i18n/ro.po | 32 --------- website_sale_cart_selectable/i18n/sl.po | 32 --------- website_sale_cart_selectable/i18n/tr_TR.po | 32 --------- website_sale_cart_selectable/i18n/vi_VN.po | 32 --------- .../i18n/website_sale_cart_selectable.pot | 27 -------- website_sale_cart_selectable/i18n/zh_CN.po | 32 --------- .../models/__init__.py | 2 - .../models/product.py | 6 +- .../readme/CONTRIBUTORS.rst | 3 + .../readme/DESCRIPTION.rst | 3 + website_sale_cart_selectable/readme/USAGE.rst | 8 +++ .../views/product_view.xml | 3 +- .../views/website_sale_template.xml | 7 +- 27 files changed, 76 insertions(+), 619 deletions(-) delete mode 100644 website_sale_cart_selectable/i18n/ca.po delete mode 100644 website_sale_cart_selectable/i18n/de.po delete mode 100644 website_sale_cart_selectable/i18n/es.po delete mode 100644 website_sale_cart_selectable/i18n/es_MX.po delete mode 100644 website_sale_cart_selectable/i18n/fi.po delete mode 100644 website_sale_cart_selectable/i18n/fr.po delete mode 100644 website_sale_cart_selectable/i18n/fr_CH.po delete mode 100644 website_sale_cart_selectable/i18n/hr.po delete mode 100644 website_sale_cart_selectable/i18n/hr_HR.po delete mode 100644 website_sale_cart_selectable/i18n/it.po delete mode 100644 website_sale_cart_selectable/i18n/nl_NL.po delete mode 100644 website_sale_cart_selectable/i18n/pt_BR.po delete mode 100644 website_sale_cart_selectable/i18n/ro.po delete mode 100644 website_sale_cart_selectable/i18n/sl.po delete mode 100644 website_sale_cart_selectable/i18n/tr_TR.po delete mode 100644 website_sale_cart_selectable/i18n/vi_VN.po delete mode 100644 website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot delete mode 100644 website_sale_cart_selectable/i18n/zh_CN.po create mode 100644 website_sale_cart_selectable/readme/CONTRIBUTORS.rst create mode 100644 website_sale_cart_selectable/readme/DESCRIPTION.rst create mode 100644 website_sale_cart_selectable/readme/USAGE.rst diff --git a/website_sale_cart_selectable/README.rst b/website_sale_cart_selectable/README.rst index a309153775..c5d3d7553d 100644 --- a/website_sale_cart_selectable/README.rst +++ b/website_sale_cart_selectable/README.rst @@ -1,11 +1,30 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - ============================ Website Sale Cart Selectable ============================ +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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%2Fe--commerce-lightgray.png?logo=github + :target: https://github.com/OCA/e-commerce/tree/12.0/website_sale_cart_selectable + :alt: OCA/e-commerce +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/e-commerce-12-0/e-commerce-12-0-website_sale_cart_selectable + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/167/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + This module extends the functionality of the website to improve the control on the button "Add to cart". Button "Add to cart" can now be set to be published or not. @@ -15,51 +34,53 @@ Usage To use this module, you need to: -#. Go to menu *Sales -> Products -> Products* +#. Go to menu *Website -> Products -> Products* #. Edit or create one. -#. Within the *Sales* tab, there will be a new field named *Button Add To +#. Within the *eCommerce* tab, there will be a new field named *Button Add To Cart* #. Set it or unset it to enable or disable the *Add To Cart* button in that product. -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/113/10.0 - Bug Tracker =========== -Bugs are tracked on `GitHub Issues -`_. In case of trouble, please -check there if your issue has already been reported. If you spotted it first, -help us smashing it by providing a detailed and welcomed feedback. +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +------- -* Odoo Community Association: `Icon `_. +* OpenSynergy Indonesia +* Tecnativa +* Akretion Contributors ------------ * Michael Viriyananda * David Vidal +* Chafique Delli -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 https://odoo-community.org. +This module is part of the `OCA/e-commerce `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/website_sale_cart_selectable/__manifest__.py b/website_sale_cart_selectable/__manifest__.py index faec4c641f..e726d6d9ad 100644 --- a/website_sale_cart_selectable/__manifest__.py +++ b/website_sale_cart_selectable/__manifest__.py @@ -1,22 +1,19 @@ -# -*- coding: utf-8 -*- # Copyright 2016 OpenSynergy Indonesia -# Copyright 2017 Tecnativa - David Vidal +# Copyright 2017 Tecnativa +# Copyright 2020 Akretion # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - { - 'name': 'Website Sale Cart Selectable', - 'version': '10.0.1.1.0', - 'summary': 'Enables to control button Add to cart display per product', - 'author': 'OpenSynergy Indonesia, ' - 'Tecnativa, ' - 'Odoo Community Association (OCA)', - 'website': 'https://opensynergy-indonesia.com', - 'category': 'Website', - 'depends': ['website_sale'], - 'data': [ - 'views/product_view.xml', - 'views/website_sale_template.xml' + "name": "Website Sale Cart Selectable", + "summary": "Enables to control button Add to cart display per product", + "version": "12.0.1.0.0", + "category": "Website", + "website": "https://github.com/OCA/e-commerce", + "author": "OpenSynergy Indonesia, Tecnativa, Akretion, Odoo Community Association (OCA)", + "license": "AGPL-3", + "depends": ["website_sale"], + "data": [ + "views/product_view.xml", + "views/website_sale_template.xml", ], - 'installable': True, - 'license': 'AGPL-3', + "installable": True, } diff --git a/website_sale_cart_selectable/i18n/ca.po b/website_sale_cart_selectable/i18n/ca.po deleted file mode 100644 index b3418e459d..0000000000 --- a/website_sale_cart_selectable/i18n/ca.po +++ /dev/null @@ -1,31 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# Carles Antoli , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-14 02:41+0000\n" -"PO-Revision-Date: 2017-01-14 02:41+0000\n" -"Last-Translator: Carles Antoli , 2017\n" -"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Plantilla del producte" diff --git a/website_sale_cart_selectable/i18n/de.po b/website_sale_cart_selectable/i18n/de.po deleted file mode 100644 index 0b1c1edefc..0000000000 --- a/website_sale_cart_selectable/i18n/de.po +++ /dev/null @@ -1,31 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# Rudolf Schnapka , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-24 03:40+0000\n" -"PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: Rudolf Schnapka , 2016\n" -"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Produktvorlage" diff --git a/website_sale_cart_selectable/i18n/es.po b/website_sale_cart_selectable/i18n/es.po deleted file mode 100644 index 3bcfcd3282..0000000000 --- a/website_sale_cart_selectable/i18n/es.po +++ /dev/null @@ -1,31 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-16 01:57+0000\n" -"PO-Revision-Date: 2017-12-16 01:57+0000\n" -"Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "Botón \"Añadir al carro\"" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Plantilla de producto" diff --git a/website_sale_cart_selectable/i18n/es_MX.po b/website_sale_cart_selectable/i18n/es_MX.po deleted file mode 100644 index 997dac4ea9..0000000000 --- a/website_sale_cart_selectable/i18n/es_MX.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# Juan González , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-07 12:28+0000\n" -"PO-Revision-Date: 2016-12-07 12:28+0000\n" -"Last-Translator: Juan González , 2016\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" -"es_MX/)\n" -"Language: es_MX\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Plantilla del producto" diff --git a/website_sale_cart_selectable/i18n/fi.po b/website_sale_cart_selectable/i18n/fi.po deleted file mode 100644 index 2733747498..0000000000 --- a/website_sale_cart_selectable/i18n/fi.po +++ /dev/null @@ -1,31 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# OCA Transbot , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-24 03:40+0000\n" -"PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Tuotteen malli" diff --git a/website_sale_cart_selectable/i18n/fr.po b/website_sale_cart_selectable/i18n/fr.po deleted file mode 100644 index a85ba06f4c..0000000000 --- a/website_sale_cart_selectable/i18n/fr.po +++ /dev/null @@ -1,31 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# Pierre Verkest , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-24 03:40+0000\n" -"PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: Pierre Verkest , 2016\n" -"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Modèle de produit" diff --git a/website_sale_cart_selectable/i18n/fr_CH.po b/website_sale_cart_selectable/i18n/fr_CH.po deleted file mode 100644 index 9e97cf9b5f..0000000000 --- a/website_sale_cart_selectable/i18n/fr_CH.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# leemannd , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-29 11:29+0000\n" -"PO-Revision-Date: 2016-11-29 11:29+0000\n" -"Last-Translator: leemannd , 2016\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" -"teams/23907/fr_CH/)\n" -"Language: fr_CH\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Template de produit" diff --git a/website_sale_cart_selectable/i18n/hr.po b/website_sale_cart_selectable/i18n/hr.po deleted file mode 100644 index 7c6fabbf4f..0000000000 --- a/website_sale_cart_selectable/i18n/hr.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# Bole , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-24 03:40+0000\n" -"PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: Bole , 2016\n" -"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" -"Language: hr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Predložak proizvoda" diff --git a/website_sale_cart_selectable/i18n/hr_HR.po b/website_sale_cart_selectable/i18n/hr_HR.po deleted file mode 100644 index 0a550b6345..0000000000 --- a/website_sale_cart_selectable/i18n/hr_HR.po +++ /dev/null @@ -1,33 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# Bole , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-24 03:40+0000\n" -"PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: Bole , 2016\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" -"hr_HR/)\n" -"Language: hr_HR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Predložak proizvoda" diff --git a/website_sale_cart_selectable/i18n/it.po b/website_sale_cart_selectable/i18n/it.po deleted file mode 100644 index 40a48c7f8d..0000000000 --- a/website_sale_cart_selectable/i18n/it.po +++ /dev/null @@ -1,31 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-16 01:57+0000\n" -"PO-Revision-Date: 2017-12-16 01:57+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" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "Pulsante Aggiungi al Carrello" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Template Prodotto" diff --git a/website_sale_cart_selectable/i18n/nl_NL.po b/website_sale_cart_selectable/i18n/nl_NL.po deleted file mode 100644 index ddf386d4e8..0000000000 --- a/website_sale_cart_selectable/i18n/nl_NL.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# Peter Hageman , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-29 00:53+0000\n" -"PO-Revision-Date: 2017-07-29 00:53+0000\n" -"Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" -"teams/23907/nl_NL/)\n" -"Language: nl_NL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Productsjabloon" diff --git a/website_sale_cart_selectable/i18n/pt_BR.po b/website_sale_cart_selectable/i18n/pt_BR.po deleted file mode 100644 index 5675c4c449..0000000000 --- a/website_sale_cart_selectable/i18n/pt_BR.po +++ /dev/null @@ -1,33 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# Claudio Araujo Santos , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-24 03:40+0000\n" -"PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: Claudio Araujo Santos , " -"2016\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" -"teams/23907/pt_BR/)\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Modelo Produto" diff --git a/website_sale_cart_selectable/i18n/ro.po b/website_sale_cart_selectable/i18n/ro.po deleted file mode 100644 index 25bc8709b3..0000000000 --- a/website_sale_cart_selectable/i18n/ro.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# OCA Transbot , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-24 03:40+0000\n" -"PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" -"Language: ro\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Produs șablon" diff --git a/website_sale_cart_selectable/i18n/sl.po b/website_sale_cart_selectable/i18n/sl.po deleted file mode 100644 index 74c6cd0ee6..0000000000 --- a/website_sale_cart_selectable/i18n/sl.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-16 01:57+0000\n" -"PO-Revision-Date: 2017-12-16 01:57+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" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "Gumb dodaj v voziček" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Predloga proizvoda" diff --git a/website_sale_cart_selectable/i18n/tr_TR.po b/website_sale_cart_selectable/i18n/tr_TR.po deleted file mode 100644 index 3be7d9178f..0000000000 --- a/website_sale_cart_selectable/i18n/tr_TR.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# Ozge Altinisik , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-01-03 18:41+0000\n" -"PO-Revision-Date: 2017-01-03 18:41+0000\n" -"Last-Translator: Ozge Altinisik , 2017\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" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Ürün şablonu" diff --git a/website_sale_cart_selectable/i18n/vi_VN.po b/website_sale_cart_selectable/i18n/vi_VN.po deleted file mode 100644 index 2ca0f53a91..0000000000 --- a/website_sale_cart_selectable/i18n/vi_VN.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# OCA Transbot , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-24 03:40+0000\n" -"PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: OCA Transbot , 2016\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" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "Mẫu sản phẩm" diff --git a/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot b/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot deleted file mode 100644 index da826256c6..0000000000 --- a/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot +++ /dev/null @@ -1,27 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -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: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "" - diff --git a/website_sale_cart_selectable/i18n/zh_CN.po b/website_sale_cart_selectable/i18n/zh_CN.po deleted file mode 100644 index 773ba3d655..0000000000 --- a/website_sale_cart_selectable/i18n/zh_CN.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_sale_cart_selectable -# -# Translators: -# Jeffery Chen Fan , 2016 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-24 03:40+0000\n" -"PO-Revision-Date: 2016-11-24 03:40+0000\n" -"Last-Translator: Jeffery Chen Fan , 2016\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" -"zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: website_sale_cart_selectable -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_delivery_carrier_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product_website_btn_addtocart_published -#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template_website_btn_addtocart_published -msgid "Button Add To Cart" -msgstr "" - -#. module: website_sale_cart_selectable -#: model:ir.model,name:website_sale_cart_selectable.model_product_template -msgid "Product Template" -msgstr "产品模板" diff --git a/website_sale_cart_selectable/models/__init__.py b/website_sale_cart_selectable/models/__init__.py index d7d73083c4..9649db77a1 100644 --- a/website_sale_cart_selectable/models/__init__.py +++ b/website_sale_cart_selectable/models/__init__.py @@ -1,3 +1 @@ -# -*- coding: utf-8 -*- - from . import product diff --git a/website_sale_cart_selectable/models/product.py b/website_sale_cart_selectable/models/product.py index f43e672594..4510e2085a 100644 --- a/website_sale_cart_selectable/models/product.py +++ b/website_sale_cart_selectable/models/product.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 OpenSynergy Indonesia # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). @@ -6,8 +5,7 @@ class ProductTemplate(models.Model): - _inherit = 'product.template' + _inherit = "product.template" website_btn_addtocart_published = fields.Boolean( - string='Button Add To Cart', copy=False, - default=True) + string="Button Add To Cart", copy=False, default=True) diff --git a/website_sale_cart_selectable/readme/CONTRIBUTORS.rst b/website_sale_cart_selectable/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000000..1c13a5f011 --- /dev/null +++ b/website_sale_cart_selectable/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* Michael Viriyananda +* David Vidal +* Chafique Delli diff --git a/website_sale_cart_selectable/readme/DESCRIPTION.rst b/website_sale_cart_selectable/readme/DESCRIPTION.rst new file mode 100644 index 0000000000..7bd3445258 --- /dev/null +++ b/website_sale_cart_selectable/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +This module extends the functionality of the website to improve the control on +the button "Add to cart". Button "Add to cart" can now be set to be published +or not. diff --git a/website_sale_cart_selectable/readme/USAGE.rst b/website_sale_cart_selectable/readme/USAGE.rst new file mode 100644 index 0000000000..5e7f209dc9 --- /dev/null +++ b/website_sale_cart_selectable/readme/USAGE.rst @@ -0,0 +1,8 @@ +To use this module, you need to: + +#. Go to menu *Website -> Products -> Products* +#. Edit or create one. +#. Within the *eCommerce* tab, there will be a new field named *Button Add To + Cart* +#. Set it or unset it to enable or disable the *Add To Cart* button in that + product. diff --git a/website_sale_cart_selectable/views/product_view.xml b/website_sale_cart_selectable/views/product_view.xml index 387209e1f8..e4812fdac6 100644 --- a/website_sale_cart_selectable/views/product_view.xml +++ b/website_sale_cart_selectable/views/product_view.xml @@ -1,8 +1,7 @@ - - Product Add To Cart + product.template diff --git a/website_sale_cart_selectable/views/website_sale_template.xml b/website_sale_cart_selectable/views/website_sale_template.xml index 1192ac6c70..1b666dfab4 100644 --- a/website_sale_cart_selectable/views/website_sale_template.xml +++ b/website_sale_cart_selectable/views/website_sale_template.xml @@ -2,11 +2,8 @@ From eef07221c0ff7a9d6d7706b72000696450a8446c Mon Sep 17 00:00:00 2001 From: Chafique Date: Mon, 13 Jul 2020 14:20:44 +0200 Subject: [PATCH 09/29] [FIX] remove unnecessary utf8 coding in __init__.py Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/website_sale_cart_selectable/__init__.py b/website_sale_cart_selectable/__init__.py index cde864bae2..0650744f6b 100644 --- a/website_sale_cart_selectable/__init__.py +++ b/website_sale_cart_selectable/__init__.py @@ -1,3 +1 @@ -# -*- coding: utf-8 -*- - from . import models From e18403f39e2ca457d0216aa86bcbc1f30008e4a6 Mon Sep 17 00:00:00 2001 From: Chafique Date: Mon, 13 Jul 2020 15:15:57 +0200 Subject: [PATCH 10/29] [FIX] line too long in __manifest__.py Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/__manifest__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website_sale_cart_selectable/__manifest__.py b/website_sale_cart_selectable/__manifest__.py index e726d6d9ad..c0bae2e640 100644 --- a/website_sale_cart_selectable/__manifest__.py +++ b/website_sale_cart_selectable/__manifest__.py @@ -8,7 +8,8 @@ "version": "12.0.1.0.0", "category": "Website", "website": "https://github.com/OCA/e-commerce", - "author": "OpenSynergy Indonesia, Tecnativa, Akretion, Odoo Community Association (OCA)", + "author": "OpenSynergy Indonesia, Tecnativa," + " Akretion, Odoo Community Association (OCA)", "license": "AGPL-3", "depends": ["website_sale"], "data": [ From df56f211755a8aa90cb1e3c298bd270594e846d0 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sun, 19 Jul 2020 09:33:08 +0000 Subject: [PATCH 11/29] [UPD] Update website_sale_cart_selectable.pot Signed-off-by: Carmen Bianca BAKKER --- .../i18n/website_sale_cart_selectable.pot | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot diff --git a/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot b/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot new file mode 100644 index 0000000000..91eff401d7 --- /dev/null +++ b/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.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: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product__website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template__website_btn_addtocart_published +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "" + From 0c6c6c09eb1ebaede26a703289780faeff1dfbcc Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Sun, 19 Jul 2020 11:06:46 +0000 Subject: [PATCH 12/29] [UPD] README.rst Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/README.rst | 13 +- .../static/description/index.html | 438 ++++++++++++++++++ 2 files changed, 447 insertions(+), 4 deletions(-) create mode 100644 website_sale_cart_selectable/static/description/index.html diff --git a/website_sale_cart_selectable/README.rst b/website_sale_cart_selectable/README.rst index c5d3d7553d..f24d5fd7ee 100644 --- a/website_sale_cart_selectable/README.rst +++ b/website_sale_cart_selectable/README.rst @@ -20,7 +20,7 @@ Website Sale Cart Selectable :target: https://translation.odoo-community.org/projects/e-commerce-12-0/e-commerce-12-0-website_sale_cart_selectable :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/167/12.0 + :target: https://runbot.odoo-community.org/runbot/113/12.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -29,6 +29,11 @@ This module extends the functionality of the website to improve the control on the button "Add to cart". Button "Add to cart" can now be set to be published or not. +**Table of contents** + +.. contents:: + :local: + Usage ===== @@ -55,21 +60,21 @@ Credits ======= Authors -------- +~~~~~~~ * OpenSynergy Indonesia * Tecnativa * Akretion Contributors ------------- +~~~~~~~~~~~~ * Michael Viriyananda * David Vidal * Chafique Delli Maintainers ------------ +~~~~~~~~~~~ This module is maintained by the OCA. diff --git a/website_sale_cart_selectable/static/description/index.html b/website_sale_cart_selectable/static/description/index.html new file mode 100644 index 0000000000..102dae6dd7 --- /dev/null +++ b/website_sale_cart_selectable/static/description/index.html @@ -0,0 +1,438 @@ + + + + + + +Website Sale Cart Selectable + + + +
+

Website Sale Cart Selectable

+ + +

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

+

This module extends the functionality of the website to improve the control on +the button “Add to cart”. Button “Add to cart” can now be set to be published +or not.

+

Table of contents

+ +
+

Usage

+

To use this module, you need to:

+
    +
  1. Go to menu Website -> Products -> Products
  2. +
  3. Edit or create one.
  4. +
  5. Within the eCommerce tab, there will be a new field named Button Add To +Cart
  6. +
  7. Set it or unset it to enable or disable the Add To Cart button in that +product.
  8. +
+
+
+

Bug Tracker

+

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

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • OpenSynergy Indonesia
  • +
  • Tecnativa
  • +
  • Akretion
  • +
+
+
+

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

+

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

+
+
+
+ + From 8d4908c6e4bc8d1d2fcc38077ffaf4c8a07e4dee Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Sun, 19 Jul 2020 11:06:46 +0000 Subject: [PATCH 13/29] [ADD] setup.py Signed-off-by: Carmen Bianca BAKKER --- .../odoo/addons/website_sale_cart_selectable | 1 + setup/website_sale_cart_selectable/setup.py | 6 ++++++ 2 files changed, 7 insertions(+) create mode 120000 setup/website_sale_cart_selectable/odoo/addons/website_sale_cart_selectable create mode 100644 setup/website_sale_cart_selectable/setup.py diff --git a/setup/website_sale_cart_selectable/odoo/addons/website_sale_cart_selectable b/setup/website_sale_cart_selectable/odoo/addons/website_sale_cart_selectable new file mode 120000 index 0000000000..6824ace7d7 --- /dev/null +++ b/setup/website_sale_cart_selectable/odoo/addons/website_sale_cart_selectable @@ -0,0 +1 @@ +../../../../website_sale_cart_selectable \ No newline at end of file diff --git a/setup/website_sale_cart_selectable/setup.py b/setup/website_sale_cart_selectable/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/website_sale_cart_selectable/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From d00cc0cfe4470089a050090fccdc339c76afbced Mon Sep 17 00:00:00 2001 From: claudiagn Date: Tue, 3 Nov 2020 10:34:56 +0000 Subject: [PATCH 14/29] Added translation using Weblate (Spanish) Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/i18n/es.po | 26 +++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 website_sale_cart_selectable/i18n/es.po diff --git a/website_sale_cart_selectable/i18n/es.po b/website_sale_cart_selectable/i18n/es.po new file mode 100644 index 0000000000..8d14edfd3b --- /dev/null +++ b/website_sale_cart_selectable/i18n/es.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product__website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template__website_btn_addtocart_published +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "" From da6cc8a4b9c763ad435a99bf588b32d3051132b8 Mon Sep 17 00:00:00 2001 From: claudiagn Date: Tue, 3 Nov 2020 10:35:11 +0000 Subject: [PATCH 15/29] Translated using Weblate (Spanish) Currently translated at 100.0% (2 of 2 strings) Translation: e-commerce-12.0/e-commerce-12.0-website_sale_cart_selectable Translate-URL: https://translation.odoo-community.org/projects/e-commerce-12-0/e-commerce-12-0-website_sale_cart_selectable/es/ Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/i18n/es.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/website_sale_cart_selectable/i18n/es.po b/website_sale_cart_selectable/i18n/es.po index 8d14edfd3b..3add2905a1 100644 --- a/website_sale_cart_selectable/i18n/es.po +++ b/website_sale_cart_selectable/i18n/es.po @@ -6,21 +6,23 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2020-11-03 13:08+0000\n" +"Last-Translator: claudiagn \n" "Language-Team: none\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10\n" #. module: website_sale_cart_selectable #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product__website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template__website_btn_addtocart_published msgid "Button Add To Cart" -msgstr "" +msgstr "Botón Añadir a la cesta" #. module: website_sale_cart_selectable #: model:ir.model,name:website_sale_cart_selectable.model_product_template msgid "Product Template" -msgstr "" +msgstr "Plantilla de producto" From 98ec6552585676d1d107198da39dfcfc1b658b6f Mon Sep 17 00:00:00 2001 From: Yann Papouin Date: Mon, 23 Nov 2020 13:13:20 +0000 Subject: [PATCH 16/29] Added translation using Weblate (French) Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/i18n/fr.po | 26 +++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 website_sale_cart_selectable/i18n/fr.po diff --git a/website_sale_cart_selectable/i18n/fr.po b/website_sale_cart_selectable/i18n/fr.po new file mode 100644 index 0000000000..affb3b98d2 --- /dev/null +++ b/website_sale_cart_selectable/i18n/fr.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product__website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template__website_btn_addtocart_published +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "" From cba81001ea673b79b7ec3a929fb86fdb619c13fa Mon Sep 17 00:00:00 2001 From: Yann Papouin Date: Mon, 23 Nov 2020 15:46:47 +0000 Subject: [PATCH 17/29] Translated using Weblate (French) Currently translated at 100.0% (2 of 2 strings) Translation: e-commerce-12.0/e-commerce-12.0-website_sale_cart_selectable Translate-URL: https://translation.odoo-community.org/projects/e-commerce-12-0/e-commerce-12-0-website_sale_cart_selectable/fr/ Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/i18n/fr.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/website_sale_cart_selectable/i18n/fr.po b/website_sale_cart_selectable/i18n/fr.po index affb3b98d2..cc3e37ee5b 100644 --- a/website_sale_cart_selectable/i18n/fr.po +++ b/website_sale_cart_selectable/i18n/fr.po @@ -6,21 +6,23 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2020-11-23 15:55+0000\n" +"Last-Translator: Yann Papouin \n" "Language-Team: none\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.10\n" #. module: website_sale_cart_selectable #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product__website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template__website_btn_addtocart_published msgid "Button Add To Cart" -msgstr "" +msgstr "Bouton Ajouter au panier" #. module: website_sale_cart_selectable #: model:ir.model,name:website_sale_cart_selectable.model_product_template msgid "Product Template" -msgstr "" +msgstr "Modèle d'article" From e708846a9b90db0a467417110b2d9e2627a73e3c Mon Sep 17 00:00:00 2001 From: claudiagn Date: Wed, 20 Jan 2021 15:33:42 +0000 Subject: [PATCH 18/29] Added translation using Weblate (Catalan) Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/i18n/ca.po | 26 +++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 website_sale_cart_selectable/i18n/ca.po diff --git a/website_sale_cart_selectable/i18n/ca.po b/website_sale_cart_selectable/i18n/ca.po new file mode 100644 index 0000000000..bc64cb9d32 --- /dev/null +++ b/website_sale_cart_selectable/i18n/ca.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_cart_selectable +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. module: website_sale_cart_selectable +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product__website_btn_addtocart_published +#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template__website_btn_addtocart_published +msgid "Button Add To Cart" +msgstr "" + +#. module: website_sale_cart_selectable +#: model:ir.model,name:website_sale_cart_selectable.model_product_template +msgid "Product Template" +msgstr "" From baddffaacac19dc63733f5dbe12d8fe9989b3058 Mon Sep 17 00:00:00 2001 From: claudiagn Date: Wed, 20 Jan 2021 15:34:08 +0000 Subject: [PATCH 19/29] Translated using Weblate (Catalan) Currently translated at 100.0% (2 of 2 strings) Translation: e-commerce-12.0/e-commerce-12.0-website_sale_cart_selectable Translate-URL: https://translation.odoo-community.org/projects/e-commerce-12-0/e-commerce-12-0-website_sale_cart_selectable/ca/ Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/i18n/ca.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/website_sale_cart_selectable/i18n/ca.po b/website_sale_cart_selectable/i18n/ca.po index bc64cb9d32..0834ec6e28 100644 --- a/website_sale_cart_selectable/i18n/ca.po +++ b/website_sale_cart_selectable/i18n/ca.po @@ -6,21 +6,23 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2021-01-20 17:44+0000\n" +"Last-Translator: claudiagn \n" "Language-Team: none\n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" #. module: website_sale_cart_selectable #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product__website_btn_addtocart_published #: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template__website_btn_addtocart_published msgid "Button Add To Cart" -msgstr "" +msgstr "Botó afegir a la cistella" #. module: website_sale_cart_selectable #: model:ir.model,name:website_sale_cart_selectable.model_product_template msgid "Product Template" -msgstr "" +msgstr "Plantilla de producte" From dd19c04e9620d783ba517d83dd605f7b8b364501 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Sun, 3 Sep 2023 12:33:50 +0000 Subject: [PATCH 20/29] [UPD] README.rst Signed-off-by: Carmen Bianca BAKKER --- website_sale_cart_selectable/README.rst | 15 +++++--- website_sale_cart_selectable/i18n/ca.po | 2 +- website_sale_cart_selectable/i18n/es.po | 2 +- website_sale_cart_selectable/i18n/fr.po | 2 +- .../static/description/index.html | 38 ++++++++++--------- 5 files changed, 32 insertions(+), 27 deletions(-) diff --git a/website_sale_cart_selectable/README.rst b/website_sale_cart_selectable/README.rst index f24d5fd7ee..31fd941a02 100644 --- a/website_sale_cart_selectable/README.rst +++ b/website_sale_cart_selectable/README.rst @@ -2,10 +2,13 @@ Website Sale Cart Selectable ============================ -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:a8f732a8d7592a0145305d6e2b64113f9bdd2e9c0b122c4d43c6a4181fbb45c0 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -19,11 +22,11 @@ Website Sale Cart Selectable .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/e-commerce-12-0/e-commerce-12-0-website_sale_cart_selectable :alt: Translate me on Weblate -.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/113/12.0 - :alt: Try me on Runbot +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/e-commerce&target_branch=12.0 + :alt: Try me on Runboat -|badge1| |badge2| |badge3| |badge4| |badge5| +|badge1| |badge2| |badge3| |badge4| |badge5| This module extends the functionality of the website to improve the control on the button "Add to cart". Button "Add to cart" can now be set to be published @@ -51,7 +54,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. -If you spotted it first, help us smashing it by providing a detailed and welcomed +If you spotted it first, help us to smash it by providing a detailed and welcomed `feedback `_. Do not contact contributors directly about support or help with technical issues. diff --git a/website_sale_cart_selectable/i18n/ca.po b/website_sale_cart_selectable/i18n/ca.po index 0834ec6e28..7e4edfad2e 100644 --- a/website_sale_cart_selectable/i18n/ca.po +++ b/website_sale_cart_selectable/i18n/ca.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * website_sale_cart_selectable +# * website_sale_cart_selectable # msgid "" msgstr "" diff --git a/website_sale_cart_selectable/i18n/es.po b/website_sale_cart_selectable/i18n/es.po index 3add2905a1..c223c6d371 100644 --- a/website_sale_cart_selectable/i18n/es.po +++ b/website_sale_cart_selectable/i18n/es.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * website_sale_cart_selectable +# * website_sale_cart_selectable # msgid "" msgstr "" diff --git a/website_sale_cart_selectable/i18n/fr.po b/website_sale_cart_selectable/i18n/fr.po index cc3e37ee5b..ce3b2fe661 100644 --- a/website_sale_cart_selectable/i18n/fr.po +++ b/website_sale_cart_selectable/i18n/fr.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * website_sale_cart_selectable +# * website_sale_cart_selectable # msgid "" msgstr "" diff --git a/website_sale_cart_selectable/static/description/index.html b/website_sale_cart_selectable/static/description/index.html index 102dae6dd7..38142815bd 100644 --- a/website_sale_cart_selectable/static/description/index.html +++ b/website_sale_cart_selectable/static/description/index.html @@ -1,20 +1,20 @@ - + - + Website Sale Cart Selectable -
-

Website Sale Cart Selectable

+
+ + +Odoo Community Association + +
+

Website Sale Cart Selectable

-

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

+

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

This module allows you to enable or disable the “Add to cart” button in the e-commerce on a per-product basis.

Table of contents

@@ -386,7 +392,7 @@

Website Sale Cart Selectable

-

Use Cases / Context

+

Use Cases / Context

Odoo allows you to set products as unpublished, effectively disallowing people from buying these products. However, a company may want to publish a product online to allow a customer to view the product, but NOT allow the customer to @@ -395,7 +401,7 @@

Use Cases / Context

to cart” button.

-

Usage

+

Usage

To use this module, you need to:

  1. Go to menu Website -> Products -> Products
  2. @@ -407,7 +413,7 @@

    Usage

-

Bug Tracker

+

Bug Tracker

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

Bug Tracker

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

-

Credits

+

Credits

-

Authors

+

Authors

  • OpenSynergy Indonesia
  • Tecnativa
  • @@ -426,7 +432,7 @@

    Authors

-

Contributors

+

Contributors

-

Maintainers

+

Maintainers

This module is maintained by the OCA.

-Odoo Community Association + +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.

@@ -446,5 +454,6 @@

Maintainers

+