diff --git a/website_sale_product_brand/README.rst b/website_sale_product_brand/README.rst new file mode 100644 index 0000000000..8e50f1c5bc --- /dev/null +++ b/website_sale_product_brand/README.rst @@ -0,0 +1,135 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +================================== +Product Brand Filtering in Website +================================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:2866648306719d101a1a7e53c7797ebb0c3f171e68905bf0f627ed69f5f020f4 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/license-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/19.0/website_sale_product_brand + :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-19-0/e-commerce-19-0-website_sale_product_brand + :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/e-commerce&target_branch=19.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module was written to extend the functionality of product filtering +on website. It will allow you to filter product based on its brand. + +While shopping online, we have seen various eShops having a feature to +shop by brands which ODOO does not yet provide officially. Website Sale +Product Brand fills the gap at certain extent and by providing basic +search by brands, thus reducing end-user’s efforts in searching the +products he/she wants to purchase. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +In order to hide brands from the e-commerce: + +1. Go to *Website > eCommerce > Product brands* +2. Click on the brand you want to unpublish. +3. Click on the *Website published* smart button. + +Usage +===== + +Shop by brand feature is available on various famous e-commerce websites +like amazon, flipkart and many. Shop by brand feature enables you to +display product relevant to that particular brand. + +To use this module, you need to: + +Once you install this module, user will be able to create a new brand +and define the brand to a product. + +To create product brand go to *Website > Settings > Products > Product +brands*: + + - User can assign a nice logo with brand description. + - After configuring the brand, user can assign a particular brand to + a particular products. + +Based on this configuration, you will see the menuitem shop by brand +next to shop menu. It will show all the brands and once you select that +brand it will show product's which is related to this brand. + +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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Serpent Consulting Services Pvt. Ltd. +* Tecnativa + +Contributors +------------ + +- Jay Vora + +- Meet Dholakia + +- `Tecnativa `__: + + - Ernesto Tejeda + - Sergio Teruel + - Alexandre Díaz + - David Vidal + - Carlos López + - Pilar Vargas + +- `Studio73 `__: + + - Alex Garcia <[alex@studio73.es]> + +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/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_product_brand/__init__.py b/website_sale_product_brand/__init__.py new file mode 100644 index 0000000000..b51a32d84e --- /dev/null +++ b/website_sale_product_brand/__init__.py @@ -0,0 +1,5 @@ +# © 2016 Serpent Consulting Services Pvt. Ltd. (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import models +from . import controllers diff --git a/website_sale_product_brand/__manifest__.py b/website_sale_product_brand/__manifest__.py new file mode 100644 index 0000000000..4ab6d105f4 --- /dev/null +++ b/website_sale_product_brand/__manifest__.py @@ -0,0 +1,36 @@ +# © 2016 Serpent Consulting Services Pvt. Ltd. (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Product Brand Filtering in Website", + "category": "e-commerce", + "author": "Serpent Consulting Services Pvt. Ltd., " + "Tecnativa, " + "Odoo Community Association (OCA)", + "website": "https://github.com/OCA/e-commerce", + "version": "19.0.1.0.0", + "license": "AGPL-3", + "depends": ["product_brand", "website_sale"], + "data": [ + "security/ir.model.access.csv", + "data/website_menu.xml", + "views/product_brand.xml", + "views/product_brand_views.xml", + "views/templates.xml", + ], + "assets": { + "web.assets_frontend": [ + "/website_sale_product_brand/static/src/scss/website_sale_product_brand.scss", + ( + "after", + "website_sale/static/src/interactions/website_sale.js", + "/website_sale_product_brand/static/src/interactions/website_sale_brand_filter.esm.js", + ), + ], + "web.assets_tests": [ + "/website_sale_product_brand/static/src/js/tour.esm.js", + "/website_sale_product_brand/static/src/js/test_website_sale_filter_brand.esm.js", + ], + }, + "installable": True, +} diff --git a/website_sale_product_brand/controllers/__init__.py b/website_sale_product_brand/controllers/__init__.py new file mode 100644 index 0000000000..5025f0dd84 --- /dev/null +++ b/website_sale_product_brand/controllers/__init__.py @@ -0,0 +1,4 @@ +# © 2016 Serpent Consulting Services Pvt. Ltd. (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import main diff --git a/website_sale_product_brand/controllers/main.py b/website_sale_product_brand/controllers/main.py new file mode 100644 index 0000000000..a65220f0e4 --- /dev/null +++ b/website_sale_product_brand/controllers/main.py @@ -0,0 +1,211 @@ +# © 2016 Serpent Consulting Services Pvt. Ltd. (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import http +from odoo.fields import Domain +from odoo.http import request + +from odoo.addons.website_sale.controllers.main import QueryURL, WebsiteSale + + +class WebsiteSale(WebsiteSale): + def _update_domain(self, brands_list, domain): + selected_brand_ids = [int(brand) for brand in brands_list] + if brands_list: + for leaf in domain: + if leaf[0] == "product_brand_id": + domain.remove(leaf) + domain += [("product_brand_id", "in", selected_brand_ids)] + return domain + + def _get_brand_ids(self, req): + return req.getlist("brand") or req.getlist("brand_ids") or [] + + def _build_brands_list( + self, + selected_brand_ids, + search=None, + products=None, + search_products=None, + category=None, + ): + domain = [] + if not products: + domain = [("id", "in", selected_brand_ids)] + elif search or category: + domain = [("product_ids", "in", search_products.ids)] + return ( + request.env["product.brand"] + .sudo() + .search(domain) + .filtered(lambda x: x.is_published and x.published_products_count > 0) + ) + + def _get_shop_domain_no_brands( + self, search, category, attribute_value_dict, search_in_description + ): + return super()._get_shop_domain( + search, + category, + attribute_value_dict, + search_in_description=search_in_description, + ) + + def _remove_extra_brands(self, brands, search_products, attrib_values): + if attrib_values: + search_product_brands = search_products.mapped("product_brand_id") + brands = brands.filtered(lambda b: b.id in search_product_brands.ids) + # sort brands by name + return brands.sorted(key=lambda brand: brand.name) + + def _get_search_options( + self, + category=None, + attribute_value_dict=None, + tags=None, + min_price=0.0, + max_price=0.0, + conversion_rate=1, + **post, + ): + res = super()._get_search_options( + category=category, + attribute_value_dict=attribute_value_dict, + tags=tags, + min_price=min_price, + max_price=max_price, + conversion_rate=conversion_rate, + **post, + ) + res["brand_ids"] = request.env.context.get("brand_ids") + return res + + def _get_shop_domain( + self, search, category, attribute_value_dict, search_in_description=True + ): + domain = super()._get_shop_domain( + search, + category, + attribute_value_dict, + search_in_description=search_in_description, + ) + brand_ids = request.env.context.get("brand_ids") or [ + int(b) + for b in ( + request.httprequest.args.getlist("brand") + or request.httprequest.args.getlist("brand_ids") + ) + if b and str(b).isdigit() + ] + if brand_ids: + domain = Domain.AND([domain, [("product_brand_id", "in", brand_ids)]]) + return domain + + @http.route( + [ + "/shop", + "/shop/page/", + '/shop/category/', + '/shop/category//page/", # Continue previous line + "/shop/brands", + ], + type="http", + auth="public", + website=True, + ) + def shop( + self, + page=0, + category=None, + search="", + min_price=0.0, + max_price=0.0, + ppg=False, + brand=None, + **post, + ): + brands_list = self._get_brand_ids(request.httprequest.args) + if brands_list: + request.update_context(brand_ids=[int(b) for b in brands_list]) + elif brand: + context = dict(request.env.context) + context.setdefault("brand_ids", [int(brand)]) + request.update_context(**context) + res = super().shop( + page=page, + category=category, + search=search, + min_price=min_price, + max_price=max_price, + ppg=ppg, + brand=brand, + **post, + ) + qcontext = getattr(res, "qcontext", None) or {} + attrib_values = qcontext.get("attrib_values") + products = qcontext.get("products") + if attrib_values is None or products is None: + return res + attribute_values = request.httprequest.args.getlist("attribute_values") + if attribute_values: + post["attribute_values"] = attribute_values + domain = self._get_shop_domain_no_brands( + search, category, attrib_values, search_in_description=False + ) + search_products = request.env["product.template"].search(domain) + # build brands list + selected_brand_ids = [int(brand) for brand in brands_list] + brands = self._build_brands_list( + selected_brand_ids, search, products, search_products, category + ) + brands = self._remove_extra_brands(brands, search_products, attrib_values) + # use search() domain instead of mapped() for better performance: + # will basically search for product's related attribute values + attrib_valid_ids = ( + request.env["product.attribute.value"] + .search( + [ + "&", + ( + "pav_attribute_line_ids.product_tmpl_id", + "in", + search_products._ids, + ), + ("pav_attribute_line_ids.value_ids", "!=", False), + ] + ) + .ids + ) + keep = qcontext.get("keep") + if keep and hasattr(keep, "args"): + keep.args["brand"] = brands_list + keep.args["brand_ids"] = selected_brand_ids + # assign values for usage in qweb + qcontext.update( + { + "brands": brands, + "selected_brand_ids": selected_brand_ids, + "attr_valid": attrib_valid_ids, + } + ) + return res + + # Method to get the brands. + @http.route(["/page/product_brands"], type="http", auth="public", website=True) + def product_brands(self, **post): + b_obj = request.env["product.brand"] + domain = [("website_published", "=", True)] + if post.get("search"): + domain += [("name", "ilike", post.get("search"))] + brand_rec = ( + b_obj.sudo() + .search(domain) + .filtered(lambda x: x.published_products_count > 0) + ) + + keep = QueryURL("/page/product_brands", brand_id=[]) + values = {"brand_rec": brand_rec, "keep": keep} + if post.get("search"): + values.update({"search": post.get("search")}) + return request.render("website_sale_product_brand.product_brands", values) diff --git a/website_sale_product_brand/data/website_menu.xml b/website_sale_product_brand/data/website_menu.xml new file mode 100644 index 0000000000..b996162bdf --- /dev/null +++ b/website_sale_product_brand/data/website_menu.xml @@ -0,0 +1,10 @@ + + + + + Shop by Brand + /page/product_brands + 25 + + + diff --git a/website_sale_product_brand/i18n/ar.po b/website_sale_product_brand/i18n/ar.po new file mode 100644 index 0000000000..c03cd58c2d --- /dev/null +++ b/website_sale_product_brand/i18n/ar.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "الموقع" diff --git a/website_sale_product_brand/i18n/bg.po b/website_sale_product_brand/i18n/bg.po new file mode 100644 index 0000000000..2691fd90f3 --- /dev/null +++ b/website_sale_product_brand/i18n/bg.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# Kaloyan Naumov , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Уебсайт" diff --git a/website_sale_product_brand/i18n/bs.po b/website_sale_product_brand/i18n/bs.po new file mode 100644 index 0000000000..acf9d0f2d8 --- /dev/null +++ b/website_sale_product_brand/i18n/bs.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:27+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Web stranica" diff --git a/website_sale_product_brand/i18n/ca.po b/website_sale_product_brand/i18n/ca.po new file mode 100644 index 0000000000..66734f988f --- /dev/null +++ b/website_sale_product_brand/i18n/ca.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +# Marc Tormo i Bochaca , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-09 03:07+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "No s'han trobat marques." + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "Marques de productes" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Cercar" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "Cercant..." + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "Comprar per marca" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Lloc web" diff --git a/website_sale_product_brand/i18n/cs.po b/website_sale_product_brand/i18n/cs.po new file mode 100644 index 0000000000..5bc5591029 --- /dev/null +++ b/website_sale_product_brand/i18n/cs.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\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>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Webová stránka" diff --git a/website_sale_product_brand/i18n/da.po b/website_sale_product_brand/i18n/da.po new file mode 100644 index 0000000000..e5e52cd75a --- /dev/null +++ b/website_sale_product_brand/i18n/da.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +# Hans Henrik Gabelgaard , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:44+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Søg" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Hjemmeside" diff --git a/website_sale_product_brand/i18n/de.po b/website_sale_product_brand/i18n/de.po new file mode 100644 index 0000000000..117273c129 --- /dev/null +++ b/website_sale_product_brand/i18n/de.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-20 01:42+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "Keine Marken gefunden." + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "Produktmarken" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Suche" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "Suche..." + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "Nach Marke Einkaufen" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Webseite" diff --git a/website_sale_product_brand/i18n/el_GR.po b/website_sale_product_brand/i18n/el_GR.po new file mode 100644 index 0000000000..895e2f19e0 --- /dev/null +++ b/website_sale_product_brand/i18n/el_GR.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# Kostas Goutoudis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Ιστότοπος" diff --git a/website_sale_product_brand/i18n/en_GB.po b/website_sale_product_brand/i18n/en_GB.po new file mode 100644 index 0000000000..ab7627bc69 --- /dev/null +++ b/website_sale_product_brand/i18n/en_GB.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/" +"23907/en_GB/)\n" +"Language: en_GB\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Website" diff --git a/website_sale_product_brand/i18n/es.po b/website_sale_product_brand/i18n/es.po new file mode 100644 index 0000000000..a25289479c --- /dev/null +++ b/website_sale_product_brand/i18n/es.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +# Pedro M. Baeza , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "Puede publicar" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "Está publicado" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "No se han encontrado marcas." + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "Producto" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "Marca de producto" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "Marcas de producto" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Buscar" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "Búsqueda..." + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "Tienda por marcas" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "URL completa de acceso al documento a través de la página web." + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "Visible en la página web actual" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "URL de la página web" + +#~ msgid "Website" +#~ msgstr "Sitio web" diff --git a/website_sale_product_brand/i18n/es_AR.po b/website_sale_product_brand/i18n/es_AR.po new file mode 100644 index 0000000000..dfbec45636 --- /dev/null +++ b/website_sale_product_brand/i18n/es_AR.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/" +"23907/es_AR/)\n" +"Language: es_AR\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "Puede Publicar" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "Está publicado" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "No se encontraron Marcas." + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "Producto" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "Marca del Producto" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "Marcas de Productos" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Buscar" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "Buscar..." + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "Comprar por Marca" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "La URL completa para acceder al documento a través del sitio web." + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "Visible en el sitio web actual" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "URL del Sitio Web" + +#~ msgid "Website" +#~ msgstr "Sitio web" diff --git a/website_sale_product_brand/i18n/es_CL.po b/website_sale_product_brand/i18n/es_CL.po new file mode 100644 index 0000000000..2e93fe5339 --- /dev/null +++ b/website_sale_product_brand/i18n/es_CL.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Sitio Web" diff --git a/website_sale_product_brand/i18n/es_CO.po b/website_sale_product_brand/i18n/es_CO.po new file mode 100644 index 0000000000..2a7b0e2fcb --- /dev/null +++ b/website_sale_product_brand/i18n/es_CO.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Sitio Web" diff --git a/website_sale_product_brand/i18n/es_CR.po b/website_sale_product_brand/i18n/es_CR.po new file mode 100644 index 0000000000..2a96d53a26 --- /dev/null +++ b/website_sale_product_brand/i18n/es_CR.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/" +"23907/es_CR/)\n" +"Language: es_CR\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Sitio web" diff --git a/website_sale_product_brand/i18n/es_DO.po b/website_sale_product_brand/i18n/es_DO.po new file mode 100644 index 0000000000..42f9e1c5bc --- /dev/null +++ b/website_sale_product_brand/i18n/es_DO.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Sitio web" diff --git a/website_sale_product_brand/i18n/es_EC.po b/website_sale_product_brand/i18n/es_EC.po new file mode 100644 index 0000000000..df5ab8dac6 --- /dev/null +++ b/website_sale_product_brand/i18n/es_EC.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Sitio web" diff --git a/website_sale_product_brand/i18n/es_MX.po b/website_sale_product_brand/i18n/es_MX.po new file mode 100644 index 0000000000..3f15e75c73 --- /dev/null +++ b/website_sale_product_brand/i18n/es_MX.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Sitio Web" diff --git a/website_sale_product_brand/i18n/es_PE.po b/website_sale_product_brand/i18n/es_PE.po new file mode 100644 index 0000000000..f125a7c83e --- /dev/null +++ b/website_sale_product_brand/i18n/es_PE.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Sitio Web" diff --git a/website_sale_product_brand/i18n/et.po b/website_sale_product_brand/i18n/et.po new file mode 100644 index 0000000000..0129937103 --- /dev/null +++ b/website_sale_product_brand/i18n/et.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Veebileht" diff --git a/website_sale_product_brand/i18n/eu.po b/website_sale_product_brand/i18n/eu.po new file mode 100644 index 0000000000..0edd0e07f9 --- /dev/null +++ b/website_sale_product_brand/i18n/eu.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 02:26+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Bilatu" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Website" diff --git a/website_sale_product_brand/i18n/fa.po b/website_sale_product_brand/i18n/fa.po new file mode 100644 index 0000000000..0abe6cbca7 --- /dev/null +++ b/website_sale_product_brand/i18n/fa.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "هیچ برندی پیدا نشد." + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "برندهای محصول" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "جستجو" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "جستجو..." + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "خرید بر اساس برند" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "تارنما" diff --git a/website_sale_product_brand/i18n/fi.po b/website_sale_product_brand/i18n/fi.po new file mode 100644 index 0000000000..1991a47519 --- /dev/null +++ b/website_sale_product_brand/i18n/fi.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Verkkosivut" diff --git a/website_sale_product_brand/i18n/fr.po b/website_sale_product_brand/i18n/fr.po new file mode 100644 index 0000000000..ab30c9a4de --- /dev/null +++ b/website_sale_product_brand/i18n/fr.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-10 04:19+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Chercher" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "Rechercher..." + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Site Internet" diff --git a/website_sale_product_brand/i18n/he.po b/website_sale_product_brand/i18n/he.po new file mode 100644 index 0000000000..03add13bce --- /dev/null +++ b/website_sale_product_brand/i18n/he.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "אתר" diff --git a/website_sale_product_brand/i18n/hr.po b/website_sale_product_brand/i18n/hr.po new file mode 100644 index 0000000000..1756bbdd90 --- /dev/null +++ b/website_sale_product_brand/i18n/hr.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Web stranice" diff --git a/website_sale_product_brand/i18n/hr_HR.po b/website_sale_product_brand/i18n/hr_HR.po new file mode 100644 index 0000000000..0a3a556276 --- /dev/null +++ b/website_sale_product_brand/i18n/hr_HR.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "Nema pronađenih brendova." + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "Brendovi proizvoda" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Pretraži" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "Pretraga..." + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "Kupuj po brendu" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Webstranice" diff --git a/website_sale_product_brand/i18n/hu.po b/website_sale_product_brand/i18n/hu.po new file mode 100644 index 0000000000..0a3b5eccc5 --- /dev/null +++ b/website_sale_product_brand/i18n/hu.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Honlap" diff --git a/website_sale_product_brand/i18n/id.po b/website_sale_product_brand/i18n/id.po new file mode 100644 index 0000000000..0f5795c58e --- /dev/null +++ b/website_sale_product_brand/i18n/id.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Situs Web" diff --git a/website_sale_product_brand/i18n/it.po b/website_sale_product_brand/i18n/it.po new file mode 100644 index 0000000000..9c0497d88f --- /dev/null +++ b/website_sale_product_brand/i18n/it.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +# Paolo Valier , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 02:55+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "Marchio" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" +"\n" +" Pulisci filtri\n" +" \n" +" " + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "Può pubblicare" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "Pulisci filtri" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "È pubblicato" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "Nessuna marca trovata." + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "Prodotto" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "Marca del prodotto" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "Marche del prodotto" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Cerca" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "Cerca..." + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "Acquisto per marca" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "L'URL completo per accedere al documento attraverso il sito web." + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "Visibile sul sito web attuale" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "URL sito web" + +#~ msgid "Website" +#~ msgstr "Sito" diff --git a/website_sale_product_brand/i18n/ja.po b/website_sale_product_brand/i18n/ja.po new file mode 100644 index 0000000000..de5d0618c9 --- /dev/null +++ b/website_sale_product_brand/i18n/ja.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "ウェブサイト" diff --git a/website_sale_product_brand/i18n/ko.po b/website_sale_product_brand/i18n/ko.po new file mode 100644 index 0000000000..890e2034da --- /dev/null +++ b/website_sale_product_brand/i18n/ko.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "웹사이트" diff --git a/website_sale_product_brand/i18n/lt.po b/website_sale_product_brand/i18n/lt.po new file mode 100644 index 0000000000..06bdb016d3 --- /dev/null +++ b/website_sale_product_brand/i18n/lt.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " +"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " +"1 : 2);\n" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Tinklapis" diff --git a/website_sale_product_brand/i18n/lv.po b/website_sale_product_brand/i18n/lv.po new file mode 100644 index 0000000000..c22a9d9075 --- /dev/null +++ b/website_sale_product_brand/i18n/lv.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\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 != 0 ? 1 : 2;\n" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Tīkla vietne" diff --git a/website_sale_product_brand/i18n/mk.po b/website_sale_product_brand/i18n/mk.po new file mode 100644 index 0000000000..6ae2e39d78 --- /dev/null +++ b/website_sale_product_brand/i18n/mk.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Вебсајт" diff --git a/website_sale_product_brand/i18n/mn.po b/website_sale_product_brand/i18n/mn.po new file mode 100644 index 0000000000..ed37797ed3 --- /dev/null +++ b/website_sale_product_brand/i18n/mn.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Вэбсайт" diff --git a/website_sale_product_brand/i18n/nb.po b/website_sale_product_brand/i18n/nb.po new file mode 100644 index 0000000000..fde4e96670 --- /dev/null +++ b/website_sale_product_brand/i18n/nb.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Nettsted" diff --git a/website_sale_product_brand/i18n/nl.po b/website_sale_product_brand/i18n/nl.po new file mode 100644 index 0000000000..18f3a32ac6 --- /dev/null +++ b/website_sale_product_brand/i18n/nl.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: none\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "Geen Merken gevonden." + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "Product Merken" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Zoek" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "Zoeken..." + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "Winkel op merk" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" diff --git a/website_sale_product_brand/i18n/pl.po b/website_sale_product_brand/i18n/pl.po new file mode 100644 index 0000000000..78b0f28655 --- /dev/null +++ b/website_sale_product_brand/i18n/pl.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:27+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\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%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Strona WWW" diff --git a/website_sale_product_brand/i18n/pt_BR.po b/website_sale_product_brand/i18n/pt_BR.po new file mode 100644 index 0000000000..7ab575b000 --- /dev/null +++ b/website_sale_product_brand/i18n/pt_BR.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "Pode Publicar" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "Está Publicado" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "Nenhuma marca encontrada." + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "Produto" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "Produto de Marca" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "Marcas de Produtos" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Pesquisa" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "Pesquisa..." + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "Comprar por marca" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "A URL completa para acessar o documento pelo site." + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "Visível no site atual" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "URL do site" + +#~ msgid "Website" +#~ msgstr "Website" diff --git a/website_sale_product_brand/i18n/ru.po b/website_sale_product_brand/i18n/ru.po new file mode 100644 index 0000000000..ebd417fbba --- /dev/null +++ b/website_sale_product_brand/i18n/ru.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Сайт" diff --git a/website_sale_product_brand/i18n/sk.po b/website_sale_product_brand/i18n/sk.po new file mode 100644 index 0000000000..846ebcb6e5 --- /dev/null +++ b/website_sale_product_brand/i18n/sk.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:28+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\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>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Webová stránka" diff --git a/website_sale_product_brand/i18n/sl.po b/website_sale_product_brand/i18n/sl.po new file mode 100644 index 0000000000..a7914832d6 --- /dev/null +++ b/website_sale_product_brand/i18n/sl.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-12 08:04+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Spletna stran" diff --git a/website_sale_product_brand/i18n/sr.po b/website_sale_product_brand/i18n/sr.po new file mode 100644 index 0000000000..c53794e93a --- /dev/null +++ b/website_sale_product_brand/i18n/sr.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Web stranica" diff --git a/website_sale_product_brand/i18n/sr@latin.po b/website_sale_product_brand/i18n/sr@latin.po new file mode 100644 index 0000000000..c38283c808 --- /dev/null +++ b/website_sale_product_brand/i18n/sr@latin.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\n" +"Language: sr@latin\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Internet stranica" diff --git a/website_sale_product_brand/i18n/sv.po b/website_sale_product_brand/i18n/sv.po new file mode 100644 index 0000000000..9b435f120b --- /dev/null +++ b/website_sale_product_brand/i18n/sv.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\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 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "Kan publicera" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "Är publicerad" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "Inga varumärken hittades." + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "Produkt" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "Produktvarumärke" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "Produktvarumärken" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Sök" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "Sök..." + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "Handla efter varumärke" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "Den fullständiga URL:en för att komma åt dokumentet via webbplatsen." + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "Synlig på nuvarande webbplats" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "URL till webbplats" + +#~ msgid "Website" +#~ msgstr "Webbplats" diff --git a/website_sale_product_brand/i18n/th.po b/website_sale_product_brand/i18n/th.po new file mode 100644 index 0000000000..bc8c387228 --- /dev/null +++ b/website_sale_product_brand/i18n/th.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "เว็บไซต์" diff --git a/website_sale_product_brand/i18n/uk.po b/website_sale_product_brand/i18n/uk.po new file mode 100644 index 0000000000..f41ff88b54 --- /dev/null +++ b/website_sale_product_brand/i18n/uk.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:27+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Веб-сайт" diff --git a/website_sale_product_brand/i18n/vi.po b/website_sale_product_brand/i18n/vi.po new file mode 100644 index 0000000000..dd988f6d6d --- /dev/null +++ b/website_sale_product_brand/i18n/vi.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "Trang web" diff --git a/website_sale_product_brand/i18n/website_sale_product_brand.pot b/website_sale_product_brand/i18n/website_sale_product_brand.pot new file mode 100644 index 0000000000..0865610611 --- /dev/null +++ b/website_sale_product_brand/i18n/website_sale_product_brand.pot @@ -0,0 +1,94 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.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_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" diff --git a/website_sale_product_brand/i18n/zh_CN.po b/website_sale_product_brand/i18n/zh_CN.po new file mode 100644 index 0000000000..e43767f9b3 --- /dev/null +++ b/website_sale_product_brand/i18n/zh_CN.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:29+0000\n" +"Last-Translator: Anonymous \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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "网站" diff --git a/website_sale_product_brand/i18n/zh_TW.po b/website_sale_product_brand/i18n/zh_TW.po new file mode 100644 index 0000000000..12945dccfa --- /dev/null +++ b/website_sale_product_brand/i18n/zh_TW.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2026-02-25 07:30+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\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" +"X-Generator: Weblate 5.15.2\n" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "" +"\n" +" Clear Filters\n" +" \n" +" " +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.website_sale_filter_brand_products_brands +msgid "Clear Filters" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__is_published +msgid "Is Published" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_template +msgid "Product" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_product_brand +msgid "Product Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.menu,name:website_sale_product_brand.menu_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model_terms:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search..." +msgstr "" + +#. module: website_sale_product_brand +#: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand +msgid "Shop by Brand" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,help:website_sale_product_brand.field_product_brand__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.model.fields,field_description:website_sale_product_brand.field_product_brand__website_url +msgid "Website URL" +msgstr "" + +#~ msgid "Website" +#~ msgstr "網站" diff --git a/website_sale_product_brand/models/__init__.py b/website_sale_product_brand/models/__init__.py new file mode 100644 index 0000000000..166b988153 --- /dev/null +++ b/website_sale_product_brand/models/__init__.py @@ -0,0 +1,2 @@ +from . import product_brand +from . import product_template diff --git a/website_sale_product_brand/models/product_brand.py b/website_sale_product_brand/models/product_brand.py new file mode 100644 index 0000000000..b3c2cd899a --- /dev/null +++ b/website_sale_product_brand/models/product_brand.py @@ -0,0 +1,24 @@ +# Copyright 2020 Tecnativa - David Vidal +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) +from odoo import fields, models + + +class ProductBrand(models.Model): + _name = "product.brand" + _inherit = ["product.brand", "website.published.mixin"] + + published_products_count = fields.Integer( + compute="_compute_published_products_count", + ) + + def _default_is_published(self): + return True + + def _compute_published_products_count(self): + for brand in self: + brand.published_products_count = self.env["product.template"].search_count( + [ + ("product_brand_id", "=", brand.id), + ("website_published", "=", True), + ] + ) diff --git a/website_sale_product_brand/models/product_template.py b/website_sale_product_brand/models/product_template.py new file mode 100644 index 0000000000..bdfdd9ea97 --- /dev/null +++ b/website_sale_product_brand/models/product_template.py @@ -0,0 +1,17 @@ +# Copyright 2022 Tecnativa - Carlos Roca +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import api, models + + +class ProductTemplate(models.Model): + _inherit = "product.template" + + @api.model + def _search_get_detail(self, website, order, options): + res = super()._search_get_detail(website, order, options) + domain = res["base_domain"] + brand_ids = options.get("brand_ids") + if brand_ids: + domain.append([("product_brand_id", "in", brand_ids)]) + res["base_domain"] = domain + return res diff --git a/website_sale_product_brand/pyproject.toml b/website_sale_product_brand/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/website_sale_product_brand/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/website_sale_product_brand/readme/CONFIGURE.md b/website_sale_product_brand/readme/CONFIGURE.md new file mode 100644 index 0000000000..8566ccdee3 --- /dev/null +++ b/website_sale_product_brand/readme/CONFIGURE.md @@ -0,0 +1,5 @@ +In order to hide brands from the e-commerce: + +1. Go to *Website \> eCommerce \> Product brands* +2. Click on the brand you want to unpublish. +3. Click on the *Website published* smart button. diff --git a/website_sale_product_brand/readme/CONTRIBUTORS.md b/website_sale_product_brand/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..67a98a4e19 --- /dev/null +++ b/website_sale_product_brand/readme/CONTRIBUTORS.md @@ -0,0 +1,16 @@ +- Jay Vora \<\> + +- Meet Dholakia \<\> + +- [Tecnativa](https://www.tecnativa.com): + + > - Ernesto Tejeda \<\> + > - Sergio Teruel \<\> + > - Alexandre Díaz + > - David Vidal + > - Carlos López + > - Pilar Vargas + +- [Studio73](https://www.studio73.es): + > - Alex Garcia <[alex@studio73.es]> + diff --git a/website_sale_product_brand/readme/DESCRIPTION.md b/website_sale_product_brand/readme/DESCRIPTION.md new file mode 100644 index 0000000000..0582732dac --- /dev/null +++ b/website_sale_product_brand/readme/DESCRIPTION.md @@ -0,0 +1,8 @@ +This module was written to extend the functionality of product filtering +on website. It will allow you to filter product based on its brand. + +While shopping online, we have seen various eShops having a feature to +shop by brands which ODOO does not yet provide officially. Website Sale +Product Brand fills the gap at certain extent and by providing basic +search by brands, thus reducing end-user’s efforts in searching the +products he/she wants to purchase. diff --git a/website_sale_product_brand/readme/USAGE.md b/website_sale_product_brand/readme/USAGE.md new file mode 100644 index 0000000000..0e05ce40f4 --- /dev/null +++ b/website_sale_product_brand/readme/USAGE.md @@ -0,0 +1,19 @@ +Shop by brand feature is available on various famous e-commerce websites +like amazon, flipkart and many. Shop by brand feature enables you to +display product relevant to that particular brand. + +To use this module, you need to: + +Once you install this module, user will be able to create a new brand +and define the brand to a product. + +To create product brand go to *Website \> Settings \> Products \> +Product brands*: + +> - User can assign a nice logo with brand description. +> - After configuring the brand, user can assign a particular brand to a +> particular products. + +Based on this configuration, you will see the menuitem shop by brand +next to shop menu. It will show all the brands and once you select that +brand it will show product's which is related to this brand. diff --git a/website_sale_product_brand/security/ir.model.access.csv b/website_sale_product_brand/security/ir.model.access.csv new file mode 100644 index 0000000000..f48fe4f3ca --- /dev/null +++ b/website_sale_product_brand/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_product_brand_public,public.product.brand,product_brand.model_product_brand,base.group_public,1,0,0,0 diff --git a/website_sale_product_brand/static/description/icon.png b/website_sale_product_brand/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/website_sale_product_brand/static/description/icon.png differ diff --git a/website_sale_product_brand/static/description/index.html b/website_sale_product_brand/static/description/index.html new file mode 100644 index 0000000000..f655c6a00e --- /dev/null +++ b/website_sale_product_brand/static/description/index.html @@ -0,0 +1,490 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

Product Brand Filtering in Website

+ +

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

+

This module was written to extend the functionality of product filtering +on website. It will allow you to filter product based on its brand.

+

While shopping online, we have seen various eShops having a feature to +shop by brands which ODOO does not yet provide officially. Website Sale +Product Brand fills the gap at certain extent and by providing basic +search by brands, thus reducing end-user’s efforts in searching the +products he/she wants to purchase.

+

Table of contents

+ +
+

Configuration

+

In order to hide brands from the e-commerce:

+
    +
  1. Go to Website > eCommerce > Product brands
  2. +
  3. Click on the brand you want to unpublish.
  4. +
  5. Click on the Website published smart button.
  6. +
+
+
+

Usage

+

Shop by brand feature is available on various famous e-commerce websites +like amazon, flipkart and many. Shop by brand feature enables you to +display product relevant to that particular brand.

+

To use this module, you need to:

+

Once you install this module, user will be able to create a new brand +and define the brand to a product.

+

To create product brand go to Website > Settings > Products > Product +brands:

+
+
    +
  • User can assign a nice logo with brand description.
  • +
  • After configuring the brand, user can assign a particular brand to +a particular products.
  • +
+
+

Based on this configuration, you will see the menuitem shop by brand +next to shop menu. It will show all the brands and once you select that +brand it will show product’s which is related to this brand.

+
+
+

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.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Serpent Consulting Services Pvt. Ltd.
  • +
  • Tecnativa
  • +
+
+
+

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.

+
+
+
+
+ + diff --git a/website_sale_product_brand/static/src/interactions/website_sale_brand_filter.esm.js b/website_sale_product_brand/static/src/interactions/website_sale_brand_filter.esm.js new file mode 100644 index 0000000000..4d3e40fc34 --- /dev/null +++ b/website_sale_product_brand/static/src/interactions/website_sale_brand_filter.esm.js @@ -0,0 +1,54 @@ +import {WebsiteSale} from "@website_sale/interactions/website_sale"; +import {patch} from "@web/core/utils/patch"; + +patch(WebsiteSale.prototype, { + onChangeAttribute(ev) { + const container = + ev.currentTarget.closest(".o_wsale_products_grid_before_rail") || + ev.currentTarget.closest(".oe_website_sale") || + document; + const filters = container.querySelectorAll( + "form.js_attributes input:checked, form.js_attributes select" + ); + const attributeValues = new Map(); + const tags = new Set(); + const brands = new Set(); + for (const filter of filters) { + if (!filter.value) { + continue; + } + if (filter.name === "attribute_value") { + const [attributeId, attributeValueId] = filter.value.split("-"); + const valueIds = attributeValues.get(attributeId) ?? new Set(); + valueIds.add(attributeValueId); + attributeValues.set(attributeId, valueIds); + } else if (filter.name === "tags") { + tags.add(filter.value); + } else if (filter.name === "brand") { + brands.add(filter.value); + } + } + const url = new URL(window.location.href); + const searchParams = url.searchParams; + searchParams.delete("attribute_values"); + searchParams.delete("tags"); + searchParams.delete("brand"); + searchParams.delete("brand_ids"); + searchParams.delete("page"); + + for (const entry of attributeValues.entries()) { + searchParams.append( + "attribute_values", + `${entry[0]}-${[...entry[1]].join(",")}` + ); + } + if (tags.size) { + searchParams.set("tags", [...tags].join(",")); + } + for (const brandId of brands) { + searchParams.append("brand", brandId); + } + + window.location.assign(`${url.pathname}?${searchParams.toString()}`); + }, +}); diff --git a/website_sale_product_brand/static/src/js/test_website_sale_filter_brand.esm.js b/website_sale_product_brand/static/src/js/test_website_sale_filter_brand.esm.js new file mode 100644 index 0000000000..f04e9047c4 --- /dev/null +++ b/website_sale_product_brand/static/src/js/test_website_sale_filter_brand.esm.js @@ -0,0 +1,18 @@ +import {registry} from "@web/core/registry"; + +registry.category("web_tour.tours").add("website_sale_filter_product_brand", { + test: true, + url: "/shop", + steps: () => [ + { + content: "Check brand", + trigger: 'input[name="brand"]', + run: "click", + expectUnloadPage: true, + }, + { + content: "Brand should be checked after reload", + trigger: 'input[name="brand"]:checked', + }, + ], +}); diff --git a/website_sale_product_brand/static/src/js/tour.esm.js b/website_sale_product_brand/static/src/js/tour.esm.js new file mode 100644 index 0000000000..20edca9c08 --- /dev/null +++ b/website_sale_product_brand/static/src/js/tour.esm.js @@ -0,0 +1,33 @@ +/* License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +import {registry} from "@web/core/registry"; + +registry.category("web_tour.tours").add("website_sale_product_brand", { + test: true, + url: "/", + steps: () => [ + { + trigger: "a[href='/page/product_brands']", + content: "Go to 'Product brand' page", + expectUnloadPage: true, + run: "click", + }, + { + content: "search Apple", + trigger: 'form input[name="search"]', + run: "edit Apple", + }, + { + content: "Click to search Apple", + trigger: 'form:has(input[name="search"]) button', + expectUnloadPage: true, + run: "click", + }, + { + content: "select Apple", + trigger: 'section a:has(span:contains("Apple"))', + expectUnloadPage: true, + run: "click", + }, + ], +}); diff --git a/website_sale_product_brand/static/src/scss/website_sale_product_brand.scss b/website_sale_product_brand/static/src/scss/website_sale_product_brand.scss new file mode 100644 index 0000000000..1bda4355ed --- /dev/null +++ b/website_sale_product_brand/static/src/scss/website_sale_product_brand.scss @@ -0,0 +1,7 @@ +.brand_item { + .brand_item_image { + object-fit: scale-down; + height: 200px; + width: 200px; + } +} diff --git a/website_sale_product_brand/tests/__init__.py b/website_sale_product_brand/tests/__init__.py new file mode 100644 index 0000000000..5cbcc58e16 --- /dev/null +++ b/website_sale_product_brand/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import test_website_sale_filter_brand diff --git a/website_sale_product_brand/tests/test_website_sale_filter_brand.py b/website_sale_product_brand/tests/test_website_sale_filter_brand.py new file mode 100644 index 0000000000..7c9c8092e2 --- /dev/null +++ b/website_sale_product_brand/tests/test_website_sale_filter_brand.py @@ -0,0 +1,165 @@ +from unittest.mock import patch + +from werkzeug.datastructures import OrderedMultiDict +from werkzeug.wrappers import Response + +from odoo.http import request +from odoo.tests import HttpCase, tagged + +from odoo.addons.base.tests.common import BaseCommon +from odoo.addons.website_sale.tests.common import MockRequest +from odoo.addons.website_sale_product_brand.controllers.main import ( + WebsiteSale as Website, +) + + +@tagged("post_install", "-at_install") +class TestWebsiteSaleFilterBrandHttpCase(HttpCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + + # Activate attribute's filter in /shop. By default it's disabled. + website = cls.env["website"].with_context(website_id=1) + website.viewref("website_sale.products_attributes").active = True + # Activate filter category view + cls.env.ref( + "website_sale_product_brand.website_sale_filter_brand_products_brands" + ).active = True + cls.brand = cls.env["product.brand"].create({"name": "Tour Brand"}) + cls.env["product.template"].create( + { + "name": "Tour Product", + "sale_ok": True, + "is_published": True, + "list_price": 10.0, + "product_brand_id": cls.brand.id, + } + ) + login = "portal_brand" + cls.portal_user = ( + cls.env["res.users"] + .with_context(no_reset_password=True) + .create( + { + "name": "Portal Brand User", + "login": login, + "password": login, + "email": "portal_brand@example.com", + "group_ids": [(6, 0, [cls.env.ref("base.group_portal").id])], + } + ) + ) + + def test_ui_website_admin(self): + """Test frontend tour.""" + self.start_tour("/shop", "website_sale_filter_product_brand", login="admin") + + def test_ui_website_portal(self): + """Test frontend tour.""" + self.start_tour( + "/shop", "website_sale_filter_product_brand", login=self.portal_user.login + ) + + +class WebsiteSale(BaseCommon): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.website = cls.env["website"].browse(1) + cls.WebsiteSaleController = Website() + cls.public_user = cls.env.ref("base.public_user") + cls.brand = cls.env["product.brand"].create({"name": "Test Brand"}) + cls.product = cls.env["product.template"].create( + { + "name": "Test Product", + "sale_ok": True, + "is_published": True, + "product_brand_id": cls.brand.id, + } + ) + + def test_brands_domain(self): + brand_ids = self.brand + products = self.env["product.template"].search([("sale_ok", "=", True)]) + brands_list = [str(brand_ids.id)] + domain = [("product_brand_id", "=", brand_ids.id)] + required_domain = [("product_brand_id", "in", [brand_ids.id])] + required_domain2 = [("id", "=", 1), ("product_brand_id", "in", [brand_ids.id])] + simple_domain = [("id", "=", 1)] + res1 = [] + res2 = [] + res3 = [] + res4 = [] + + with MockRequest( + brand_ids.with_user(self.public_user).env, + website=self.website.with_user(self.public_user), + ): + res1 = self.WebsiteSaleController._update_domain(brands_list, domain) + res2 = self.WebsiteSaleController._update_domain(brands_list, simple_domain) + res3 = self.WebsiteSaleController._build_brands_list(brands_list) + res4 = self.WebsiteSaleController._remove_extra_brands( + brand_ids, products, True + ) + self.assertEqual(res1, required_domain, "Must be the same") + self.assertEqual(res2, required_domain2, "Must be the same") + self.assertEqual(res3.ids, brand_ids.ids, "Must be the same") + self.assertEqual(res4.ids, brand_ids.ids, "Must be the same") + + def test_shop_controller_lines(self): + class MockResponse(Response): + def __init__(self, qcontext=None): + super().__init__("Mock") + self.qcontext = qcontext or {} + + with MockRequest( + self.env, + website=self.website, + ): + request.httprequest.args = OrderedMultiDict([("attribute_values", "1")]) + + with patch( + "odoo.addons.website_sale.controllers.main.WebsiteSale.shop" + ) as mock_shop: + mock_shop.return_value = MockResponse(qcontext={}) + res1 = self.WebsiteSaleController.shop(brand=str(self.brand.id)) + self.assertEqual(request.env.context.get("brand_ids"), [self.brand.id]) + self.assertEqual(res1.status_code, 200) + + class KeepMock: + args = {} + + keep_mock = KeepMock() + mock_shop.return_value = MockResponse( + qcontext={ + "attrib_values": [], + "products": self.product, + "keep": keep_mock, + } + ) + with patch.object( + self.WebsiteSaleController, "_get_shop_domain_no_brands" + ) as mock_domain: + mock_domain.return_value = [("id", "in", self.product.ids)] + res2 = self.WebsiteSaleController.shop(brand=str(self.brand.id)) + self.assertEqual(keep_mock.args.get("brand"), []) + self.assertEqual(res2.status_code, 200) + return True + + def test_product_brands_controller(self): + self.brand.website_published = True + with MockRequest(self.env, website=self.website): + with patch( + "odoo.addons.website_sale_product_brand.controllers.main.request.render" + ) as mock_render: + mock_render.return_value = Response("Mocked Response") + res = self.WebsiteSaleController.product_brands() + self.assertEqual(res.status_code, 200) + args, kwargs = mock_render.call_args + self.assertNotIn("search", args[1]) + + res = self.WebsiteSaleController.product_brands(search=self.brand.name) + self.assertEqual(res.status_code, 200) + args, kwargs = mock_render.call_args + self.assertEqual(args[1]["search"], self.brand.name) diff --git a/website_sale_product_brand/views/product_brand.xml b/website_sale_product_brand/views/product_brand.xml new file mode 100644 index 0000000000..186e1edd74 --- /dev/null +++ b/website_sale_product_brand/views/product_brand.xml @@ -0,0 +1,77 @@ + + + + + + diff --git a/website_sale_product_brand/views/product_brand_views.xml b/website_sale_product_brand/views/product_brand_views.xml new file mode 100644 index 0000000000..a2a3f38de1 --- /dev/null +++ b/website_sale_product_brand/views/product_brand_views.xml @@ -0,0 +1,34 @@ + + + + product.brand + + + + + + + + + product.brand + + + + + + + + + diff --git a/website_sale_product_brand/views/templates.xml b/website_sale_product_brand/views/templates.xml new file mode 100644 index 0000000000..1a33965116 --- /dev/null +++ b/website_sale_product_brand/views/templates.xml @@ -0,0 +1,99 @@ + + + + + + + +