Skip to content

Commit b7acf63

Browse files
committed
Merge PR #953 into 16.0
Signed-off-by pedrobaeza
2 parents b83cccb + a2b3ef6 commit b7acf63

File tree

14 files changed

+697
-0
lines changed

14 files changed

+697
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../website_sale_category_breadcrumb
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import setuptools
2+
3+
setuptools.setup(
4+
setup_requires=['setuptools-odoo'],
5+
odoo_addon=True,
6+
)
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
=====================================
2+
eCommerce Product Category Breadcrumb
3+
=====================================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:8b9f9e962ffe53eb2f1817bd7ae01cab74a92e8505967908489fb42b9f527a65
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fe--commerce-lightgray.png?logo=github
20+
:target: https://github.com/OCA/e-commerce/tree/16.0/website_sale_category_breadcrumb
21+
:alt: OCA/e-commerce
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/e-commerce-16-0/e-commerce-16-0-website_sale_category_breadcrumb
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/e-commerce&target_branch=16.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
Displays full (recursive) breadcrumb for selected product category. Also
32+
allows for displaying breadcrumbs for any additional categories of the
33+
product.
34+
35+
**Table of contents**
36+
37+
.. contents::
38+
:local:
39+
40+
Usage
41+
=====
42+
43+
Simply install the module and refresh your view.
44+
45+
Bug Tracker
46+
===========
47+
48+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/e-commerce/issues>`_.
49+
In case of trouble, please check there if your issue has already been reported.
50+
If you spotted it first, help us to smash it by providing a detailed and welcomed
51+
`feedback <https://github.com/OCA/e-commerce/issues/new?body=module:%20website_sale_category_breadcrumb%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
52+
53+
Do not contact contributors directly about support or help with technical issues.
54+
55+
Credits
56+
=======
57+
58+
Authors
59+
~~~~~~~
60+
61+
* Tecnativa
62+
* Radovan Skolnik
63+
64+
Contributors
65+
~~~~~~~~~~~~
66+
67+
* Radovan Skolnik <radovan@skolnik.info>
68+
* `Tecnativa <https://www.tecnativa.com>`__:
69+
70+
* Carlos Lopez
71+
72+
Maintainers
73+
~~~~~~~~~~~
74+
75+
This module is maintained by the OCA.
76+
77+
.. image:: https://odoo-community.org/logo.png
78+
:alt: Odoo Community Association
79+
:target: https://odoo-community.org
80+
81+
OCA, or the Odoo Community Association, is a nonprofit organization whose
82+
mission is to support the collaborative development of Odoo features and
83+
promote its widespread use.
84+
85+
.. |maintainer-Rad0van| image:: https://github.com/Rad0van.png?size=40px
86+
:target: https://github.com/Rad0van
87+
:alt: Rad0van
88+
89+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
90+
91+
|maintainer-Rad0van|
92+
93+
This module is part of the `OCA/e-commerce <https://github.com/OCA/e-commerce/tree/16.0/website_sale_category_breadcrumb>`_ project on GitHub.
94+
95+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

website_sale_category_breadcrumb/__init__.py

Whitespace-only changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# © 2021 Radovan Skolnik <radovan@skolnik.info>
2+
{
3+
"name": "eCommerce Product Category Breadcrumb",
4+
"category": "Website",
5+
"summary": "Displays Product Category Breadcrumb(s) in eCommerce",
6+
"version": "16.0.1.0.0",
7+
"author": "Tecnativa, Radovan Skolnik, Odoo Community Association (OCA)",
8+
"license": "AGPL-3",
9+
"website": "https://github.com/OCA/e-commerce",
10+
"depends": ["website_sale"],
11+
"data": ["views/templates.xml"],
12+
"installable": True,
13+
"development_status": "Beta",
14+
"maintainers": ["Rad0van"],
15+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * website_sale_category_breadcrumb
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 14.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2024-02-18 17:34+0000\n"
10+
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
11+
"Language-Team: none\n"
12+
"Language: es\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
17+
"X-Generator: Weblate 4.17\n"
18+
19+
#. module: website_sale_category_breadcrumb
20+
#: model_terms:ir.ui.view,arch_db:website_sale_category_breadcrumb.additional_breadcrumbs
21+
msgid "Products"
22+
msgstr "Productos"
23+
24+
#. module: website_sale_category_breadcrumb
25+
#: model_terms:ir.ui.view,arch_db:website_sale_category_breadcrumb.additional_breadcrumbs
26+
msgid "This product is also present in these categories:"
27+
msgstr "Este producto también está presente en estas categorías:"
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * website_sale_category_breadcrumb
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 14.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2023-05-09 18:34+0000\n"
10+
"Last-Translator: Francesco Foresti <francesco.foresti@ooops404.com>\n"
11+
"Language-Team: none\n"
12+
"Language: it\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
17+
"X-Generator: Weblate 4.14.1\n"
18+
19+
#. module: website_sale_category_breadcrumb
20+
#: model_terms:ir.ui.view,arch_db:website_sale_category_breadcrumb.additional_breadcrumbs
21+
msgid "Products"
22+
msgstr "Prodotti"
23+
24+
#. module: website_sale_category_breadcrumb
25+
#: model_terms:ir.ui.view,arch_db:website_sale_category_breadcrumb.additional_breadcrumbs
26+
msgid "This product is also present in these categories:"
27+
msgstr "Questo prodotto è anche in queste categorie:"
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * website_sale_category_breadcrumb
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 14.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"Last-Translator: \n"
10+
"Language-Team: \n"
11+
"MIME-Version: 1.0\n"
12+
"Content-Type: text/plain; charset=UTF-8\n"
13+
"Content-Transfer-Encoding: \n"
14+
"Plural-Forms: \n"
15+
16+
#. module: website_sale_category_breadcrumb
17+
#: model_terms:ir.ui.view,arch_db:website_sale_category_breadcrumb.additional_breadcrumbs
18+
msgid "Products"
19+
msgstr ""
20+
21+
#. module: website_sale_category_breadcrumb
22+
#: model_terms:ir.ui.view,arch_db:website_sale_category_breadcrumb.additional_breadcrumbs
23+
msgid "This product is also present in these categories:"
24+
msgstr ""
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* Radovan Skolnik <radovan@skolnik.info>
2+
* `Tecnativa <https://www.tecnativa.com>`__:
3+
4+
* Carlos Lopez
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Displays full (recursive) breadcrumb for selected product category. Also
2+
allows for displaying breadcrumbs for any additional categories of the
3+
product.

0 commit comments

Comments
 (0)