Skip to content

Commit

Permalink
Merge PR #479 into 17.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Jul 14, 2024
2 parents e7b175f + 38d8d5e commit f2ee327
Show file tree
Hide file tree
Showing 20 changed files with 1,001 additions and 0 deletions.
80 changes: 80 additions & 0 deletions connector_base_product/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
======================
Connector Base Product
======================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:36a87851a2907433184dc79a706f4b2352a937b261e26557536b654e93160c0e
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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-LGPL--3-blue.png
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fconnector-lightgray.png?logo=github
:target: https://github.com/OCA/connector/tree/17.0/connector_base_product
:alt: OCA/connector
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/connector-17-0/connector-17-0-connector_base_product
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/connector&target_branch=17.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

Add 'Connector' tab to product view

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/connector/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/connector/issues/new?body=module:%20connector_base_product%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
-------

* Openerp Connector Core Editors

Contributors
------------

- David BEAL (Akretion)
- Guewen Baconnier (Camptocamp)
- Atchuthan, Sodexis
- Florent Thomas (Mind and Go)
- Fernando La Chica <[email protected]>

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

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/connector <https://github.com/OCA/connector/tree/17.0/connector_base_product>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Empty file.
17 changes: 17 additions & 0 deletions connector_base_product/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# © 2014 David BEAL Akretion, Sodexis
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

{
"name": "Connector Base Product",
"version": "17.0.1.0.0",
"author": "Openerp Connector Core Editors, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/connector",
"license": "LGPL-3",
"category": "Connector",
"depends": [
"connector",
"product",
],
"data": ["views/product_view.xml"],
"installable": True,
}
25 changes: 25 additions & 0 deletions connector_base_product/i18n/ca.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * connector_base_product
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: connector (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-12 01:39+0000\n"
"PO-Revision-Date: 2016-03-11 07:57+0000\n"
"Last-Translator: <>\n"
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-connector-9-0/"
"language/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: connector_base_product
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_normal_form_view
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_template_common_form
msgid "Connectors"
msgstr "Connectors"
20 changes: 20 additions & 0 deletions connector_base_product/i18n/connector_base_product.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * connector_base_product
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.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: connector_base_product
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_normal_form_view
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_template_common_form
msgid "Connectors"
msgstr ""
25 changes: 25 additions & 0 deletions connector_base_product/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * connector_base_product
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: connector (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-12 01:39+0000\n"
"PO-Revision-Date: 2016-03-11 07:57+0000\n"
"Last-Translator: <>\n"
"Language-Team: German (http://www.transifex.com/oca/OCA-connector-9-0/"
"language/de/)\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. module: connector_base_product
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_normal_form_view
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_template_common_form
msgid "Connectors"
msgstr "Connector"
25 changes: 25 additions & 0 deletions connector_base_product/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * connector_base_product
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: connector (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-12 01:39+0000\n"
"PO-Revision-Date: 2016-03-11 07:57+0000\n"
"Last-Translator: <>\n"
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-connector-9-0/"
"language/es/)\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. module: connector_base_product
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_normal_form_view
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_template_common_form
msgid "Connectors"
msgstr "Conectores"
25 changes: 25 additions & 0 deletions connector_base_product/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * connector_base_product
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: connector (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-12 01:39+0000\n"
"PO-Revision-Date: 2016-03-11 07:57+0000\n"
"Last-Translator: <>\n"
"Language-Team: French (http://www.transifex.com/oca/OCA-connector-9-0/"
"language/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: connector_base_product
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_normal_form_view
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_template_common_form
msgid "Connectors"
msgstr "Connecteurs"
25 changes: 25 additions & 0 deletions connector_base_product/i18n/hu.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * connector_base_product
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: connector (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-12 01:39+0000\n"
"PO-Revision-Date: 2016-03-11 07:57+0000\n"
"Last-Translator: <>\n"
"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-connector-9-0/"
"language/hu/)\n"
"Language: hu\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: connector_base_product
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_normal_form_view
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_template_common_form
msgid "Connectors"
msgstr "Csatolók"
25 changes: 25 additions & 0 deletions connector_base_product/i18n/it.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * connector_base_product
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: connector (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-12 01:39+0000\n"
"PO-Revision-Date: 2016-03-11 07:57+0000\n"
"Last-Translator: <>\n"
"Language-Team: Italian (http://www.transifex.com/oca/OCA-connector-9-0/"
"language/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: connector_base_product
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_normal_form_view
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_template_common_form
msgid "Connectors"
msgstr "Connettori"
25 changes: 25 additions & 0 deletions connector_base_product/i18n/nl.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * connector_base_product
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: connector (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-12 01:39+0000\n"
"PO-Revision-Date: 2016-03-11 07:57+0000\n"
"Last-Translator: <>\n"
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-connector-9-0/"
"language/nl/)\n"
"Language: 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: connector_base_product
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_normal_form_view
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_template_common_form
msgid "Connectors"
msgstr "Connectors"
25 changes: 25 additions & 0 deletions connector_base_product/i18n/pt_BR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * connector_base_product
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: connector (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-12 01:39+0000\n"
"PO-Revision-Date: 2016-03-11 07:57+0000\n"
"Last-Translator: <>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-"
"connector-9-0/language/pt_BR/)\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"

#. module: connector_base_product
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_normal_form_view
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_template_common_form
msgid "Connectors"
msgstr "Conectores"
27 changes: 27 additions & 0 deletions connector_base_product/i18n/sl.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * connector_base_product
#
# Translators:
# Matjaž Mozetič <[email protected]>, 2015
msgid ""
msgstr ""
"Project-Id-Version: connector (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-12 01:39+0000\n"
"PO-Revision-Date: 2016-03-11 07:58+0000\n"
"Last-Translator: OCA Transbot <[email protected]>\n"
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-connector-9-0/"
"language/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: connector_base_product
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_normal_form_view
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_template_common_form
msgid "Connectors"
msgstr "Povezovalniki"
25 changes: 25 additions & 0 deletions connector_base_product/i18n/zh_CN.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * connector_base_product
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: connector (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-12 01:39+0000\n"
"PO-Revision-Date: 2016-03-11 07:57+0000\n"
"Last-Translator: <>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-"
"connector-9-0/language/zh_CN/)\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"

#. module: connector_base_product
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_normal_form_view
#: model_terms:ir.ui.view,arch_db:connector_base_product.product_template_common_form
msgid "Connectors"
msgstr "连接器"
3 changes: 3 additions & 0 deletions connector_base_product/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
5 changes: 5 additions & 0 deletions connector_base_product/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- David BEAL (Akretion)
- Guewen Baconnier (Camptocamp)
- Atchuthan, Sodexis
- Florent Thomas (Mind and Go)
- Fernando La Chica \<<[email protected]>\>
1 change: 1 addition & 0 deletions connector_base_product/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add 'Connector' tab to product view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f2ee327

Please sign in to comment.