diff --git a/nfu_product_custom_fields/README.rst b/nfu_product_bnn_attributes/README.rst similarity index 79% rename from nfu_product_custom_fields/README.rst rename to nfu_product_bnn_attributes/README.rst index 0e247a1..dd12905 100644 --- a/nfu_product_custom_fields/README.rst +++ b/nfu_product_bnn_attributes/README.rst @@ -1,6 +1,6 @@ -========================= -NFU Product Custom Fields -========================= +================== +NFU BNN Attributes +================== .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! @@ -17,12 +17,12 @@ NFU Product Custom Fields :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-bruecksen%2Fife_nfu-lightgray.png?logo=github - :target: https://github.com/bruecksen/ife_nfu/tree/16.0/nfu_product_custom_fields + :target: https://github.com/bruecksen/ife_nfu/tree/16.0/nfu_product_bnn_attributes :alt: bruecksen/ife_nfu |badge1| |badge2| |badge3| -This module adds additional Fields to Products to store information from BNN +This module adds a page to product form view to store BNN Attributes. **Table of contents** @@ -41,7 +41,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 to smash it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -56,6 +56,6 @@ Authors Maintainers ~~~~~~~~~~~ -This module is part of the `bruecksen/ife_nfu `_ project on GitHub. +This module is part of the `bruecksen/ife_nfu `_ project on GitHub. You are welcome to contribute. diff --git a/nfu_product_custom_fields/__init__.py b/nfu_product_bnn_attributes/__init__.py similarity index 100% rename from nfu_product_custom_fields/__init__.py rename to nfu_product_bnn_attributes/__init__.py diff --git a/nfu_product_custom_fields/__manifest__.py b/nfu_product_bnn_attributes/__manifest__.py similarity index 70% rename from nfu_product_custom_fields/__manifest__.py rename to nfu_product_bnn_attributes/__manifest__.py index 55b2494..5e7077e 100644 --- a/nfu_product_custom_fields/__manifest__.py +++ b/nfu_product_bnn_attributes/__manifest__.py @@ -1,6 +1,6 @@ { - "name": "NFU Product Custom Fields", - "summary": """This Module Adds Custom Fields To Products""", + "name": "NFU BNN Attributes", + "summary": """This Module Adds BNN Attributes Page to Product form view""", "author": "BAKEUP", "website": "https://www.bakeup.org", "category": "Product", diff --git a/nfu_product_bnn_attributes/i18n/de.po b/nfu_product_bnn_attributes/i18n/de.po new file mode 100644 index 0000000..a88f068 --- /dev/null +++ b/nfu_product_bnn_attributes/i18n/de.po @@ -0,0 +1,64 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * nfu_product_bnn_attributes +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-06-17 22:13+0000\n" +"PO-Revision-Date: 2024-06-18 00:15+0200\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.2\n" + +#. module: nfu_product_bnn_attributes +#. odoo-python +#: code:addons/nfu_product_bnn_attributes/models/product_template.py:0 +#: model:ir.model.fields,field_description:nfu_product_bnn_attributes.field_product_product__additional_information +#: model:ir.model.fields,field_description:nfu_product_bnn_attributes.field_product_template__additional_information +#, python-format +msgid "Additional Information" +msgstr "Zusätzliche Informationen" + +#. module: nfu_product_bnn_attributes +#: model_terms:ir.ui.view,arch_db:nfu_product_bnn_attributes.product_template_bnn_view +msgid "BNN Information" +msgstr "BNN Informationen" + +#. module: nfu_product_bnn_attributes +#. odoo-python +#: code:addons/nfu_product_bnn_attributes/models/product_template.py:0 +#: model:ir.model.fields,field_description:nfu_product_bnn_attributes.field_product_product__origin +#: model:ir.model.fields,field_description:nfu_product_bnn_attributes.field_product_template__origin +#, python-format +msgid "Origin" +msgstr "Herkunft" + +#. module: nfu_product_bnn_attributes +#: model:ir.model,name:nfu_product_bnn_attributes.model_product_template +msgid "Product" +msgstr "Produkt" + +#. module: nfu_product_bnn_attributes +#. odoo-python +#: code:addons/nfu_product_bnn_attributes/models/product_template.py:0 +#: model:ir.model.fields,field_description:nfu_product_bnn_attributes.field_product_product__quality +#: model:ir.model.fields,field_description:nfu_product_bnn_attributes.field_product_template__quality +#, python-format +msgid "Quality" +msgstr "Qualität" + +#. module: nfu_product_bnn_attributes +#. odoo-python +#: code:addons/nfu_product_bnn_attributes/models/product_template.py:0 +#: model:ir.model.fields,field_description:nfu_product_bnn_attributes.field_product_product__manufacturer_abbr +#: model:ir.model.fields,field_description:nfu_product_bnn_attributes.field_product_template__manufacturer_abbr +#, python-format +msgid "Manufacturer Abbreviation" +msgstr "Herstellerkürzel" \ No newline at end of file diff --git a/nfu_product_custom_fields/models/__init__.py b/nfu_product_bnn_attributes/models/__init__.py similarity index 100% rename from nfu_product_custom_fields/models/__init__.py rename to nfu_product_bnn_attributes/models/__init__.py diff --git a/nfu_product_custom_fields/models/product_template.py b/nfu_product_bnn_attributes/models/product_template.py similarity index 100% rename from nfu_product_custom_fields/models/product_template.py rename to nfu_product_bnn_attributes/models/product_template.py diff --git a/nfu_product_custom_fields/readme/CONTRIBUTERS.rst b/nfu_product_bnn_attributes/readme/CONTRIBUTERS.rst similarity index 100% rename from nfu_product_custom_fields/readme/CONTRIBUTERS.rst rename to nfu_product_bnn_attributes/readme/CONTRIBUTERS.rst diff --git a/nfu_product_bnn_attributes/readme/DESCRIPTION.rst b/nfu_product_bnn_attributes/readme/DESCRIPTION.rst new file mode 100644 index 0000000..6a9c5f2 --- /dev/null +++ b/nfu_product_bnn_attributes/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module adds a page to product form view to store BNN Attributes. \ No newline at end of file diff --git a/nfu_product_custom_fields/readme/HISTORY.rst b/nfu_product_bnn_attributes/readme/HISTORY.rst similarity index 100% rename from nfu_product_custom_fields/readme/HISTORY.rst rename to nfu_product_bnn_attributes/readme/HISTORY.rst diff --git a/nfu_product_custom_fields/static/description/icon.png b/nfu_product_bnn_attributes/static/description/icon.png similarity index 100% rename from nfu_product_custom_fields/static/description/icon.png rename to nfu_product_bnn_attributes/static/description/icon.png diff --git a/nfu_product_custom_fields/static/description/index.html b/nfu_product_bnn_attributes/static/description/index.html similarity index 93% rename from nfu_product_custom_fields/static/description/index.html rename to nfu_product_bnn_attributes/static/description/index.html index 316beb1..4a3c0c4 100644 --- a/nfu_product_custom_fields/static/description/index.html +++ b/nfu_product_bnn_attributes/static/description/index.html @@ -3,7 +3,7 @@ -NFU Product Custom Fields +NFU BNN Attributes -
-

NFU Product Custom Fields

+
+

NFU BNN Attributes

-

Beta License: LGPL-3 bruecksen/ife_nfu

-

This module adds additional Fields to Products to store information from BNN

+

Beta License: LGPL-3 bruecksen/ife_nfu

+

This module adds a page to product form view to store BNN Attributes.

Table of contents

    @@ -392,7 +392,7 @@ ul.auto-toc {

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

    +feedback.

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

@@ -405,7 +405,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome

Maintainers

-

This module is part of the bruecksen/ife_nfu project on GitHub.

+

This module is part of the bruecksen/ife_nfu project on GitHub.

You are welcome to contribute.

diff --git a/nfu_product_custom_fields/views/product_template_bnn_view.xml b/nfu_product_bnn_attributes/views/product_template_bnn_view.xml similarity index 100% rename from nfu_product_custom_fields/views/product_template_bnn_view.xml rename to nfu_product_bnn_attributes/views/product_template_bnn_view.xml diff --git a/nfu_product_custom_fields/i18n/de.po b/nfu_product_custom_fields/i18n/de.po deleted file mode 100644 index 1199556..0000000 --- a/nfu_product_custom_fields/i18n/de.po +++ /dev/null @@ -1,64 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * nfu_product_custom_fields -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 16.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-17 22:13+0000\n" -"PO-Revision-Date: 2024-06-18 00:15+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.4.2\n" - -#. module: nfu_product_custom_fields -#. odoo-python -#: code:addons/nfu_product_custom_fields/models/product_template.py:0 -#: model:ir.model.fields,field_description:nfu_product_custom_fields.field_product_product__additional_information -#: model:ir.model.fields,field_description:nfu_product_custom_fields.field_product_template__additional_information -#, python-format -msgid "Additional Information" -msgstr "Zusätzliche Informationen" - -#. module: nfu_product_custom_fields -#: model_terms:ir.ui.view,arch_db:nfu_product_custom_fields.product_template_bnn_view -msgid "BNN Information" -msgstr "BNN Informationen" - -#. module: nfu_product_custom_fields -#. odoo-python -#: code:addons/nfu_product_custom_fields/models/product_template.py:0 -#: model:ir.model.fields,field_description:nfu_product_custom_fields.field_product_product__origin -#: model:ir.model.fields,field_description:nfu_product_custom_fields.field_product_template__origin -#, python-format -msgid "Origin" -msgstr "Herkunft" - -#. module: nfu_product_custom_fields -#: model:ir.model,name:nfu_product_custom_fields.model_product_template -msgid "Product" -msgstr "Produkt" - -#. module: nfu_product_custom_fields -#. odoo-python -#: code:addons/nfu_product_custom_fields/models/product_template.py:0 -#: model:ir.model.fields,field_description:nfu_product_custom_fields.field_product_product__quality -#: model:ir.model.fields,field_description:nfu_product_custom_fields.field_product_template__quality -#, python-format -msgid "Quality" -msgstr "Qualität" - -#. module: nfu_product_custom_fields -#. odoo-python -#: code:addons/nfu_product_custom_fields/models/product_template.py:0 -#: model:ir.model.fields,field_description:nfu_product_custom_fields.field_product_product__manufacturer_abbr -#: model:ir.model.fields,field_description:nfu_product_custom_fields.field_product_template__manufacturer_abbr -#, python-format -msgid "Manufacturer Abbreviation" -msgstr "Herstellerkürzel" \ No newline at end of file diff --git a/nfu_product_custom_fields/readme/DESCRIPTION.rst b/nfu_product_custom_fields/readme/DESCRIPTION.rst deleted file mode 100644 index beafad1..0000000 --- a/nfu_product_custom_fields/readme/DESCRIPTION.rst +++ /dev/null @@ -1 +0,0 @@ -This module adds additional Fields to Products to store information from BNN \ No newline at end of file