From 7d667da625735b5e2efbf1ee192a6bf39caceb79 Mon Sep 17 00:00:00 2001 From: MeetSCS Date: Fri, 11 Sep 2015 12:54:07 +0530 Subject: [PATCH 01/11] [IMP]Changed name of module. --- website_sale_product_brand/README.rst | 70 ++++++++++++++++ website_sale_product_brand/__init__.py | 24 ++++++ website_sale_product_brand/__openerp__.py | 40 +++++++++ .../controllers/__init__.py | 23 ++++++ .../controllers/main.py | 77 ++++++++++++++++++ website_sale_product_brand/models/__init__.py | 23 ++++++ website_sale_product_brand/models/website.py | 36 ++++++++ .../security/ir.model.access.csv | 2 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../views/product_brand.xml | 74 +++++++++++++++++ 10 files changed, 369 insertions(+) create mode 100644 website_sale_product_brand/README.rst create mode 100644 website_sale_product_brand/__init__.py create mode 100644 website_sale_product_brand/__openerp__.py create mode 100644 website_sale_product_brand/controllers/__init__.py create mode 100644 website_sale_product_brand/controllers/main.py create mode 100644 website_sale_product_brand/models/__init__.py create mode 100644 website_sale_product_brand/models/website.py create mode 100644 website_sale_product_brand/security/ir.model.access.csv create mode 100644 website_sale_product_brand/static/description/icon.png create mode 100644 website_sale_product_brand/views/product_brand.xml diff --git a/website_sale_product_brand/README.rst b/website_sale_product_brand/README.rst new file mode 100644 index 0000000000..73138ab2de --- /dev/null +++ b/website_sale_product_brand/README.rst @@ -0,0 +1,70 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +========================== +Website Sale Product Brand +========================== + +Description +=========== + +This module was written to extend the functionality of product filtering on website. +It will allow you to filter product based on its brand. + +This Module depends on product_brand module : +->https://github.com/OCA/product-attribute/tree/8.0/product_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. + +Usage +===== + +To use this module, you need to: + +- Create Product brand, to create product brand + go to: + sales>products>product brands +- Select Product brand in product. + +Based on this configuration, you will see the menuitem shop by brand under 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. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/113/50 + +The blog here explains the HOWTO : + +http://www.serpentcs.com/serpentcs-odoo-ecommerce-shop-brands-contribution + +The Youtube Video is here : + +https://www.youtube.com/watch?feature=player_embedded&v=LkV5umivylw + +Credits +======= + +Contributors +------------ + +* Jay Vora +* Meet Dholakia + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/website_sale_product_brand/__init__.py b/website_sale_product_brand/__init__.py new file mode 100644 index 0000000000..29c3ac599b --- /dev/null +++ b/website_sale_product_brand/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. +# () +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see +# +############################################################################## + +from . import controllers +from . import models diff --git a/website_sale_product_brand/__openerp__.py b/website_sale_product_brand/__openerp__.py new file mode 100644 index 0000000000..24a37a5143 --- /dev/null +++ b/website_sale_product_brand/__openerp__.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. +# () +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see +# +############################################################################## + +{ + 'name': 'Product Brand Filtering in Website', + 'category': 'e-commerce', + 'author': "Serpent Consulting Services Pvt. Ltd," + "Odoo Community Association (OCA)", + 'website': 'http://www.serpentcs.com', + 'version': '8.0.1.0.0', + 'depends': [ + 'product_brand', + 'website_sale' + ], + 'data': [ + "security/ir.model.access.csv", + "views/product_brand.xml", + ], + 'installable': True, + 'auto_install': False, +} diff --git a/website_sale_product_brand/controllers/__init__.py b/website_sale_product_brand/controllers/__init__.py new file mode 100644 index 0000000000..ebd700982e --- /dev/null +++ b/website_sale_product_brand/controllers/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. +# () +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see +# +############################################################################## + +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..d5e5cfdb8a --- /dev/null +++ b/website_sale_product_brand/controllers/main.py @@ -0,0 +1,77 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. +# () +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see +# +############################################################################## + +import openerp +from openerp import http +from openerp.http import request +from openerp import SUPERUSER_ID +from openerp.addons.website_sale.controllers.main import QueryURL +from openerp.addons.website_sale.controllers.main import website_sale + + +class WebsiteSale(website_sale): + + @http.route(['/shop', + '/shop/page/', + '/shop/category/', + """/shop/category/ + /page/""", + '/shop/brands'], + type='http', + auth='public', + website=True) + def shop(self, page=0, category=None, brand=None, search='', **post): + if brand: + request.context.setdefault('brand_id', int(brand)) + result = super(WebsiteSale, self).shop(page=page, category=category, + brand=brand, search=search, + **post) + result.qcontext['brand'] = brand + return result + + # Method to get the brands. + @http.route( + ['/page/product_brands'], + type='http', + auth='public', + website=True) + def product_brands(self, **post): + cr, context, pool = (request.cr, + request.context, + request.registry) + b_obj = pool['product.brand'] + domain = [] + if post.get('search'): + domain += [('name', 'ilike', post.get('search'))] + brand_ids = b_obj.search(cr, SUPERUSER_ID, domain) + brand_rec = b_obj.browse(cr, SUPERUSER_ID, brand_ids, context=context) + + 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.website.render( + 'website_sale_product_brand.product_brands', + values) + +openerp.addons.website_sale.controllers.main.website_sale = WebsiteSale diff --git a/website_sale_product_brand/models/__init__.py b/website_sale_product_brand/models/__init__.py new file mode 100644 index 0000000000..705ebfad63 --- /dev/null +++ b/website_sale_product_brand/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. +# () +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see +# +############################################################################## + +from . import website diff --git a/website_sale_product_brand/models/website.py b/website_sale_product_brand/models/website.py new file mode 100644 index 0000000000..0f0902015c --- /dev/null +++ b/website_sale_product_brand/models/website.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. +# () +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see +# +############################################################################## + +from openerp.osv import orm +from openerp.http import request + + +class WebSite(orm.Model): + _inherit = 'website' + + def sale_product_domain(self, cr, uid, ids, context=None): + domain = super(WebSite, self).sale_product_domain(cr, uid, ids=ids, + context=context) + if 'brand_id' in request.env.context: + domain.append( + ('product_brand_id', '=', request.env.context['brand_id'])) + return domain 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 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/website_sale_product_brand/views/product_brand.xml b/website_sale_product_brand/views/product_brand.xml new file mode 100644 index 0000000000..346a14f0e4 --- /dev/null +++ b/website_sale_product_brand/views/product_brand.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + Shop All + /shop + + + + + Shop by Brand + /page/product_brands + + + + + From 1bd4587514b1d3ad466b2dbb4239c7e50912876d Mon Sep 17 00:00:00 2001 From: MeetSCS Date: Thu, 31 Mar 2016 11:53:03 +0530 Subject: [PATCH 02/11] [MIG]Migrated shop_by_brand module in v9. OCA Transbot updated translations from Transifex --- website_sale_product_brand/README.rst | 51 +++++++++++++----- website_sale_product_brand/__init__.py | 22 +------- website_sale_product_brand/__openerp__.py | 27 ++-------- .../controllers/__init__.py | 22 +------- .../controllers/main.py | 37 +++---------- website_sale_product_brand/i18n/es.po | 54 +++++++++++++++++++ website_sale_product_brand/i18n/hr_HR.po | 54 +++++++++++++++++++ website_sale_product_brand/i18n/sl.po | 54 +++++++++++++++++++ website_sale_product_brand/models/__init__.py | 22 +------- website_sale_product_brand/models/website.py | 37 ++++--------- 10 files changed, 228 insertions(+), 152 deletions(-) create mode 100644 website_sale_product_brand/i18n/es.po create mode 100644 website_sale_product_brand/i18n/hr_HR.po create mode 100644 website_sale_product_brand/i18n/sl.po diff --git a/website_sale_product_brand/README.rst b/website_sale_product_brand/README.rst index 73138ab2de..8c7c535240 100644 --- a/website_sale_product_brand/README.rst +++ b/website_sale_product_brand/README.rst @@ -1,5 +1,6 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License: AGPL-3 + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 ========================== Website Sale Product Brand @@ -11,43 +12,67 @@ Description This module was written to extend the functionality of product filtering on website. It will allow you to filter product based on its brand. -This Module depends on product_brand module : -->https://github.com/OCA/product-attribute/tree/8.0/product_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 +extent and by providing basic search by brands, thus reducing end-user’s efforts in searching the products he/she wants to purchase. +Installation +============ + +To install this module, you need to install following module: +->https://github.com/OCA/product-attribute/tree/9.0/product_brand + 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: -- Create Product brand, to create product brand +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: sales>products>product brands -- Select Product brand in product. + +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 under 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. +The blog here explains the HOWTO : + http://www.serpentcs.com/serpentcs-odoo-ecommerce-shop-brands-contribution +The Youtube Video is here : + https://www.youtube.com/watch?feature=player_embedded&v=LkV5umivylw + .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot :target: https://runbot.odoo-community.org/runbot/113/50 -The blog here explains the HOWTO : - -http://www.serpentcs.com/serpentcs-odoo-ecommerce-shop-brands-contribution - -The Youtube Video is here : +Bug Tracker +=========== -https://www.youtube.com/watch?feature=player_embedded&v=LkV5umivylw +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed `feedback +`_. Credits ======= +Images +------ + +* Odoo Community Association: `Icon `_. + Contributors ------------ diff --git a/website_sale_product_brand/__init__.py b/website_sale_product_brand/__init__.py index 29c3ac599b..a205695a51 100644 --- a/website_sale_product_brand/__init__.py +++ b/website_sale_product_brand/__init__.py @@ -1,24 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. -# () -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see -# -############################################################################## +# © 2016 Serpent Consulting Services Pvt. Ltd. (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import controllers from . import models diff --git a/website_sale_product_brand/__openerp__.py b/website_sale_product_brand/__openerp__.py index 24a37a5143..6b3c078ecb 100644 --- a/website_sale_product_brand/__openerp__.py +++ b/website_sale_product_brand/__openerp__.py @@ -1,32 +1,15 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. -# () -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see -# -############################################################################## +# © 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," + 'author': "Serpent Consulting Services Pvt. Ltd.," "Odoo Community Association (OCA)", 'website': 'http://www.serpentcs.com', - 'version': '8.0.1.0.0', + 'version': '9.0.1.0.0', + 'license': 'AGPL-3', 'depends': [ 'product_brand', 'website_sale' diff --git a/website_sale_product_brand/controllers/__init__.py b/website_sale_product_brand/controllers/__init__.py index ebd700982e..89b3a0df1e 100644 --- a/website_sale_product_brand/controllers/__init__.py +++ b/website_sale_product_brand/controllers/__init__.py @@ -1,23 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. -# () -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see -# -############################################################################## +# © 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 index d5e5cfdb8a..9b6f448e3c 100644 --- a/website_sale_product_brand/controllers/main.py +++ b/website_sale_product_brand/controllers/main.py @@ -1,26 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. -# () -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see -# -############################################################################## +# © 2016 Serpent Consulting Services Pvt. Ltd. (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -import openerp from openerp import http from openerp.http import request from openerp import SUPERUSER_ID @@ -41,12 +22,12 @@ class WebsiteSale(website_sale): website=True) def shop(self, page=0, category=None, brand=None, search='', **post): if brand: - request.context.setdefault('brand_id', int(brand)) - result = super(WebsiteSale, self).shop(page=page, category=category, - brand=brand, search=search, - **post) - result.qcontext['brand'] = brand - return result + context = dict(request.env.context) + context.setdefault('brand_id', int(brand)) + request.env.context = context + return super(WebsiteSale, self).shop(page=page, category=category, + brand=brand, search=search, + **post) # Method to get the brands. @http.route( @@ -73,5 +54,3 @@ def product_brands(self, **post): return request.website.render( 'website_sale_product_brand.product_brands', values) - -openerp.addons.website_sale.controllers.main.website_sale = WebsiteSale diff --git a/website_sale_product_brand/i18n/es.po b/website_sale_product_brand/i18n/es.po new file mode 100644 index 0000000000..7682582598 --- /dev/null +++ b/website_sale_product_brand/i18n/es.po @@ -0,0 +1,54 @@ +# 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-08-12 08:04+0000\n" +"PO-Revision-Date: 2016-08-12 08:04+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Buscar" + +#. module: website_sale_product_brand +#: model: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_shop +msgid "Shop All" +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,name:website_sale_product_brand.model_website +msgid "Website" +msgstr "" 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..7844916105 --- /dev/null +++ b/website_sale_product_brand/i18n/hr_HR.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-20 11:12+0000\n" +"PO-Revision-Date: 2016-09-20 11:12+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: website_sale_product_brand +#: model: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.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "Brendovi proizvoda" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Pretraži" + +#. module: website_sale_product_brand +#: model: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_shop +msgid "Shop All" +msgstr "Kupuj sve" + +#. 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,name:website_sale_product_brand.model_website +msgid "Website" +msgstr "Webstranice" diff --git a/website_sale_product_brand/i18n/sl.po b/website_sale_product_brand/i18n/sl.po new file mode 100644 index 0000000000..6c5a1e66db --- /dev/null +++ b/website_sale_product_brand/i18n/sl.po @@ -0,0 +1,54 @@ +# 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: 2016-08-12 08:04+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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_shop +msgid "Shop All" +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,name:website_sale_product_brand.model_website +msgid "Website" +msgstr "Spletna stran" diff --git a/website_sale_product_brand/models/__init__.py b/website_sale_product_brand/models/__init__.py index 705ebfad63..c22b361961 100644 --- a/website_sale_product_brand/models/__init__.py +++ b/website_sale_product_brand/models/__init__.py @@ -1,23 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. -# () -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see -# -############################################################################## +# © 2016 Serpent Consulting Services Pvt. Ltd. (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import website diff --git a/website_sale_product_brand/models/website.py b/website_sale_product_brand/models/website.py index 0f0902015c..8aa60ece85 100644 --- a/website_sale_product_brand/models/website.py +++ b/website_sale_product_brand/models/website.py @@ -1,36 +1,17 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012-Today Serpent Consulting Services Pvt. Ltd. -# () -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see -# -############################################################################## +# © 2016 Serpent Consulting Services Pvt. Ltd. (http://www.serpentcs.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp.osv import orm -from openerp.http import request +from openerp import models, api -class WebSite(orm.Model): +class WebSite(models.Model): _inherit = 'website' - def sale_product_domain(self, cr, uid, ids, context=None): - domain = super(WebSite, self).sale_product_domain(cr, uid, ids=ids, - context=context) - if 'brand_id' in request.env.context: + @api.multi + def sale_product_domain(self): + domain = super(WebSite, self).sale_product_domain() + if 'brand_id' in self.env.context: domain.append( - ('product_brand_id', '=', request.env.context['brand_id'])) + ('product_brand_id', '=', self.env.context['brand_id'])) return domain From 3e6d39c42adb7867ce34646fc910ff2d95583037 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Tue, 18 Oct 2016 08:52:59 +0200 Subject: [PATCH 03/11] [ADD][website_sale_wishlist] Wishlist for your online shop. (#122) [ADD][website_sale_wishlist] Wishlist for your online shop. Allow your visitors and users to wishlist your products and have a shortcut for seeing them. Wishlisted products are stored in the session for public users, and linked to the user if s/he is logged in. OCA Transbot updated translations from Transifex --- website_sale_product_brand/__openerp__.py | 3 +- .../data/website_menu.xml | 12 +++++ website_sale_product_brand/i18n/ar.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/bg.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/bs.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/ca.po | 50 +++++++++++++++++++ website_sale_product_brand/i18n/cs.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/da.po | 50 +++++++++++++++++++ website_sale_product_brand/i18n/de.po | 50 +++++++++++++++++++ website_sale_product_brand/i18n/el_GR.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/en_GB.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/es.po | 20 +++----- website_sale_product_brand/i18n/es_AR.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/es_CL.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/es_CO.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/es_CR.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/es_DO.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/es_EC.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/es_MX.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/es_PE.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/et.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/eu.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/fa.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/fi.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/fr.po | 50 +++++++++++++++++++ website_sale_product_brand/i18n/he.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/hr.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/hr_HR.po | 13 ++--- website_sale_product_brand/i18n/hu.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/id.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/it.po | 50 +++++++++++++++++++ website_sale_product_brand/i18n/ja.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/ko.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/lt.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/lv.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/mk.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/mn.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/nb.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/pl.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/pt_BR.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/ru.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/sk.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/sr.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/sr@latin.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/sv.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/th.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/uk.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/vi.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/zh_CN.po | 49 ++++++++++++++++++ website_sale_product_brand/i18n/zh_TW.po | 49 ++++++++++++++++++ .../views/product_brand.xml | 17 +------ 51 files changed, 2287 insertions(+), 37 deletions(-) create mode 100644 website_sale_product_brand/data/website_menu.xml create mode 100644 website_sale_product_brand/i18n/ar.po create mode 100644 website_sale_product_brand/i18n/bg.po create mode 100644 website_sale_product_brand/i18n/bs.po create mode 100644 website_sale_product_brand/i18n/ca.po create mode 100644 website_sale_product_brand/i18n/cs.po create mode 100644 website_sale_product_brand/i18n/da.po create mode 100644 website_sale_product_brand/i18n/de.po create mode 100644 website_sale_product_brand/i18n/el_GR.po create mode 100644 website_sale_product_brand/i18n/en_GB.po create mode 100644 website_sale_product_brand/i18n/es_AR.po create mode 100644 website_sale_product_brand/i18n/es_CL.po create mode 100644 website_sale_product_brand/i18n/es_CO.po create mode 100644 website_sale_product_brand/i18n/es_CR.po create mode 100644 website_sale_product_brand/i18n/es_DO.po create mode 100644 website_sale_product_brand/i18n/es_EC.po create mode 100644 website_sale_product_brand/i18n/es_MX.po create mode 100644 website_sale_product_brand/i18n/es_PE.po create mode 100644 website_sale_product_brand/i18n/et.po create mode 100644 website_sale_product_brand/i18n/eu.po create mode 100644 website_sale_product_brand/i18n/fa.po create mode 100644 website_sale_product_brand/i18n/fi.po create mode 100644 website_sale_product_brand/i18n/fr.po create mode 100644 website_sale_product_brand/i18n/he.po create mode 100644 website_sale_product_brand/i18n/hr.po create mode 100644 website_sale_product_brand/i18n/hu.po create mode 100644 website_sale_product_brand/i18n/id.po create mode 100644 website_sale_product_brand/i18n/it.po create mode 100644 website_sale_product_brand/i18n/ja.po create mode 100644 website_sale_product_brand/i18n/ko.po create mode 100644 website_sale_product_brand/i18n/lt.po create mode 100644 website_sale_product_brand/i18n/lv.po create mode 100644 website_sale_product_brand/i18n/mk.po create mode 100644 website_sale_product_brand/i18n/mn.po create mode 100644 website_sale_product_brand/i18n/nb.po create mode 100644 website_sale_product_brand/i18n/pl.po create mode 100644 website_sale_product_brand/i18n/pt_BR.po create mode 100644 website_sale_product_brand/i18n/ru.po create mode 100644 website_sale_product_brand/i18n/sk.po create mode 100644 website_sale_product_brand/i18n/sr.po create mode 100644 website_sale_product_brand/i18n/sr@latin.po create mode 100644 website_sale_product_brand/i18n/sv.po create mode 100644 website_sale_product_brand/i18n/th.po create mode 100644 website_sale_product_brand/i18n/uk.po create mode 100644 website_sale_product_brand/i18n/vi.po create mode 100644 website_sale_product_brand/i18n/zh_CN.po create mode 100644 website_sale_product_brand/i18n/zh_TW.po diff --git a/website_sale_product_brand/__openerp__.py b/website_sale_product_brand/__openerp__.py index 6b3c078ecb..b5b448ece3 100644 --- a/website_sale_product_brand/__openerp__.py +++ b/website_sale_product_brand/__openerp__.py @@ -8,13 +8,14 @@ 'author': "Serpent Consulting Services Pvt. Ltd.," "Odoo Community Association (OCA)", 'website': 'http://www.serpentcs.com', - 'version': '9.0.1.0.0', + 'version': '9.0.1.1.0', 'license': 'AGPL-3', 'depends': [ 'product_brand', 'website_sale' ], 'data': [ + "data/website_menu.xml", "security/ir.model.access.csv", "views/product_brand.xml", ], 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..e8cd55d3ce --- /dev/null +++ b/website_sale_product_brand/data/website_menu.xml @@ -0,0 +1,12 @@ + + + + + + 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..1a65ac8ec1 --- /dev/null +++ b/website_sale_product_brand/i18n/ar.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\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 && n%100<=99 ? 4 : 5;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..b6892811f2 --- /dev/null +++ b/website_sale_product_brand/i18n/bg.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: Kaloyan Naumov , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..f5a83a0ab5 --- /dev/null +++ b/website_sale_product_brand/i18n/bs.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..a2ad3453b8 --- /dev/null +++ b/website_sale_product_brand/i18n/ca.po @@ -0,0 +1,50 @@ +# 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: 2017-06-09 03:07+0000\n" +"Last-Translator: Marc Tormo i Bochaca , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Cercar" + +#. module: website_sale_product_brand +#: model: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 "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_website +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..5c7c0169e3 --- /dev/null +++ b/website_sale_product_brand/i18n/cs.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..5cd8e4121b --- /dev/null +++ b/website_sale_product_brand/i18n/da.po @@ -0,0 +1,50 @@ +# 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: 2017-05-19 02:44+0000\n" +"Last-Translator: Hans Henrik Gabelgaard , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Søg" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..5a6d52fba4 --- /dev/null +++ b/website_sale_product_brand/i18n/de.po @@ -0,0 +1,50 @@ +# 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: 2017-05-20 01:42+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model: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.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "Produktmarken" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Suche" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..869bfc5e02 --- /dev/null +++ b/website_sale_product_brand/i18n/el_GR.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: Kostas Goutoudis , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..342ac94113 --- /dev/null +++ b/website_sale_product_brand/i18n/en_GB.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +msgid "Website" +msgstr "Website" diff --git a/website_sale_product_brand/i18n/es.po b/website_sale_product_brand/i18n/es.po index 7682582598..3d2e999db1 100644 --- a/website_sale_product_brand/i18n/es.po +++ b/website_sale_product_brand/i18n/es.po @@ -4,13 +4,14 @@ # # 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-08-12 08:04+0000\n" -"PO-Revision-Date: 2016-08-12 08:04+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2016-11-29 01:20+0000\n" +"Last-Translator: Pedro M. Baeza , 2016\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +22,12 @@ msgstr "" #. module: website_sale_product_brand #: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands msgid "No Brands Found." -msgstr "" +msgstr "No se han encontrado marcas." #. module: website_sale_product_brand #: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands msgid "Product Brands" -msgstr "" +msgstr "Marcas de producto" #. module: website_sale_product_brand #: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands @@ -38,17 +39,12 @@ msgstr "Buscar" msgid "Search..." msgstr "Búsqueda..." -#. module: website_sale_product_brand -#: model:website.menu,name:website_sale_product_brand.menu_website_sale_shop -msgid "Shop All" -msgstr "" - #. module: website_sale_product_brand #: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand msgid "Shop by Brand" -msgstr "" +msgstr "Tienda por marcas" #. module: website_sale_product_brand #: model:ir.model,name:website_sale_product_brand.model_website msgid "Website" -msgstr "" +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..da661d041b --- /dev/null +++ b/website_sale_product_brand/i18n/es_AR.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..70091d7669 --- /dev/null +++ b/website_sale_product_brand/i18n/es_CL.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..8ffa82deff --- /dev/null +++ b/website_sale_product_brand/i18n/es_CO.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..c5a53028ca --- /dev/null +++ b/website_sale_product_brand/i18n/es_CR.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..60b488917b --- /dev/null +++ b/website_sale_product_brand/i18n/es_DO.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..3006bb507d --- /dev/null +++ b/website_sale_product_brand/i18n/es_EC.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..a60166b265 --- /dev/null +++ b/website_sale_product_brand/i18n/es_MX.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..8c8e8cf46e --- /dev/null +++ b/website_sale_product_brand/i18n/es_PE.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..8d925d902a --- /dev/null +++ b/website_sale_product_brand/i18n/et.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..05d485459d --- /dev/null +++ b/website_sale_product_brand/i18n/eu.po @@ -0,0 +1,49 @@ +# 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: 2017-01-21 02:26+0000\n" +"Last-Translator: Esther Martín Menéndez , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Bilatu" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..891c1a4f42 --- /dev/null +++ b/website_sale_product_brand/i18n/fa.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..8f6a35a166 --- /dev/null +++ b/website_sale_product_brand/i18n/fi.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..335f47fd39 --- /dev/null +++ b/website_sale_product_brand/i18n/fr.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_product_brand +# +# Translators: +# OCA Transbot , 2016 +# leemannd , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-15 13:10+0000\n" +"PO-Revision-Date: 2016-12-15 13:10+0000\n" +"Last-Translator: leemannd , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..c3a8cdc887 --- /dev/null +++ b/website_sale_product_brand/i18n/he.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..9773f4bd8a --- /dev/null +++ b/website_sale_product_brand/i18n/hr.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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 index 7844916105..78615ba36e 100644 --- a/website_sale_product_brand/i18n/hr_HR.po +++ b/website_sale_product_brand/i18n/hr_HR.po @@ -3,14 +3,14 @@ # * website_sale_product_brand # # Translators: -# Bole , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-20 11:12+0000\n" -"PO-Revision-Date: 2016-09-20 11:12+0000\n" -"Last-Translator: Bole , 2016\n" +"POT-Creation-Date: 2016-11-29 01:20+0000\n" +"PO-Revision-Date: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" "Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,11 +38,6 @@ msgstr "Pretraži" msgid "Search..." msgstr "Pretraga..." -#. module: website_sale_product_brand -#: model:website.menu,name:website_sale_product_brand.menu_website_sale_shop -msgid "Shop All" -msgstr "Kupuj sve" - #. module: website_sale_product_brand #: model:website.menu,name:website_sale_product_brand.menu_website_sale_brand msgid "Shop by Brand" diff --git a/website_sale_product_brand/i18n/hu.po b/website_sale_product_brand/i18n/hu.po new file mode 100644 index 0000000000..56ddf6046c --- /dev/null +++ b/website_sale_product_brand/i18n/hu.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..67b854ed74 --- /dev/null +++ b/website_sale_product_brand/i18n/id.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..df27c9eb96 --- /dev/null +++ b/website_sale_product_brand/i18n/it.po @@ -0,0 +1,50 @@ +# 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: 2017-03-28 02:55+0000\n" +"Last-Translator: Paolo Valier , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "Cerca" + +#. module: website_sale_product_brand +#: model: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 "" + +#. module: website_sale_product_brand +#: model:ir.model,name:website_sale_product_brand.model_website +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..9226b86c33 --- /dev/null +++ b/website_sale_product_brand/i18n/ja.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..2941f28619 --- /dev/null +++ b/website_sale_product_brand/i18n/ko.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..38ede640a8 --- /dev/null +++ b/website_sale_product_brand/i18n/lt.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..bdde53e0e0 --- /dev/null +++ b/website_sale_product_brand/i18n/lv.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..481fd5d412 --- /dev/null +++ b/website_sale_product_brand/i18n/mk.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..dea941dc72 --- /dev/null +++ b/website_sale_product_brand/i18n/mn.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..f7d6d83297 --- /dev/null +++ b/website_sale_product_brand/i18n/nb.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +msgid "Website" +msgstr "Nettsted" diff --git a/website_sale_product_brand/i18n/pl.po b/website_sale_product_brand/i18n/pl.po new file mode 100644 index 0000000000..3a4b2fb8c9 --- /dev/null +++ b/website_sale_product_brand/i18n/pl.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..032a0eea16 --- /dev/null +++ b/website_sale_product_brand/i18n/pt_BR.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..bb285cfb61 --- /dev/null +++ b/website_sale_product_brand/i18n/ru.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\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" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..d819bb5b8e --- /dev/null +++ b/website_sale_product_brand/i18n/sk.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +msgid "Website" +msgstr "Webová stránka" diff --git a/website_sale_product_brand/i18n/sr.po b/website_sale_product_brand/i18n/sr.po new file mode 100644 index 0000000000..7ecdffaff3 --- /dev/null +++ b/website_sale_product_brand/i18n/sr.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..b6cd9bddb7 --- /dev/null +++ b/website_sale_product_brand/i18n/sr@latin.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..79d2a811a2 --- /dev/null +++ b/website_sale_product_brand/i18n/sv.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..b6c0c0f6a1 --- /dev/null +++ b/website_sale_product_brand/i18n/th.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..63c71d326f --- /dev/null +++ b/website_sale_product_brand/i18n/uk.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..61d3942c88 --- /dev/null +++ b/website_sale_product_brand/i18n/vi.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +msgid "Website" +msgstr "Trang web" 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..e50953b2ce --- /dev/null +++ b/website_sale_product_brand/i18n/zh_CN.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +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..36f4ced215 --- /dev/null +++ b/website_sale_product_brand/i18n/zh_TW.po @@ -0,0 +1,49 @@ +# 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: 2016-11-29 01:20+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "No Brands Found." +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Product Brands" +msgstr "" + +#. module: website_sale_product_brand +#: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands +msgid "Search" +msgstr "" + +#. module: website_sale_product_brand +#: model: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,name:website_sale_product_brand.model_website +msgid "Website" +msgstr "網站" diff --git a/website_sale_product_brand/views/product_brand.xml b/website_sale_product_brand/views/product_brand.xml index 346a14f0e4..7e3f87b112 100644 --- a/website_sale_product_brand/views/product_brand.xml +++ b/website_sale_product_brand/views/product_brand.xml @@ -6,10 +6,10 @@ - - - Shop All - /shop - - - - - Shop by Brand - /page/product_brands - - - From 3f5419e34d0ebeca7b39ae3b266ad3950d742c58 Mon Sep 17 00:00:00 2001 From: Carlos Dauden Date: Fri, 24 Nov 2017 10:29:06 +0100 Subject: [PATCH 04/11] [FIX] website_sale_product_brand: Page not found in category pagination OCA Transbot updated translations from Transifex --- website_sale_product_brand/__openerp__.py | 2 +- website_sale_product_brand/controllers/main.py | 4 ++-- website_sale_product_brand/i18n/fr.po | 9 ++++----- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/website_sale_product_brand/__openerp__.py b/website_sale_product_brand/__openerp__.py index b5b448ece3..401d8602c3 100644 --- a/website_sale_product_brand/__openerp__.py +++ b/website_sale_product_brand/__openerp__.py @@ -8,7 +8,7 @@ 'author': "Serpent Consulting Services Pvt. Ltd.," "Odoo Community Association (OCA)", 'website': 'http://www.serpentcs.com', - 'version': '9.0.1.1.0', + 'version': '9.0.1.1.1', 'license': 'AGPL-3', 'depends': [ 'product_brand', diff --git a/website_sale_product_brand/controllers/main.py b/website_sale_product_brand/controllers/main.py index 9b6f448e3c..df59e7c708 100644 --- a/website_sale_product_brand/controllers/main.py +++ b/website_sale_product_brand/controllers/main.py @@ -14,8 +14,8 @@ class WebsiteSale(website_sale): @http.route(['/shop', '/shop/page/', '/shop/category/', - """/shop/category/ - /page/""", + '/shop/category//page/', # Continue previous line '/shop/brands'], type='http', auth='public', diff --git a/website_sale_product_brand/i18n/fr.po b/website_sale_product_brand/i18n/fr.po index 335f47fd39..6626daa274 100644 --- a/website_sale_product_brand/i18n/fr.po +++ b/website_sale_product_brand/i18n/fr.po @@ -4,14 +4,13 @@ # # Translators: # OCA Transbot , 2016 -# leemannd , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-15 13:10+0000\n" -"PO-Revision-Date: 2016-12-15 13:10+0000\n" -"Last-Translator: leemannd , 2016\n" +"POT-Creation-Date: 2018-02-10 04:19+0000\n" +"PO-Revision-Date: 2018-02-10 04:19+0000\n" +"Last-Translator: OCA Transbot , 2016\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +31,7 @@ msgstr "" #. module: website_sale_product_brand #: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands msgid "Search" -msgstr "" +msgstr "Chercher" #. module: website_sale_product_brand #: model:ir.ui.view,arch_db:website_sale_product_brand.product_brands From b1a3ac740638e59094237f9032aa09268056de21 Mon Sep 17 00:00:00 2001 From: ernesto Date: Sat, 2 Jun 2018 00:23:57 -0400 Subject: [PATCH 05/11] [MIG] website_sale_product_brand: Migration to 11.0 [UPD] Update website_sale_product_brand.pot [UPD] README.rst Translated using Weblate (Persian) Currently translated at 100.0% (5 of 5 strings) Translation: e-commerce-11.0/e-commerce-11.0-website_sale_product_brand Translate-URL: https://translation.odoo-community.org/projects/e-commerce-11-0/e-commerce-11-0-website_sale_product_brand/fa/ --- website_sale_product_brand/README.rst | 99 ++-- website_sale_product_brand/__init__.py | 2 - .../{__openerp__.py => __manifest__.py} | 13 +- .../controllers/__init__.py | 1 - .../controllers/main.py | 32 +- website_sale_product_brand/demo/assets.xml | 13 + .../demo/product_brand_demo.xml | 6 + .../demo/product_product_demo.xml | 9 + website_sale_product_brand/i18n/ar.po | 13 +- website_sale_product_brand/i18n/bg.po | 10 +- website_sale_product_brand/i18n/bs.po | 13 +- website_sale_product_brand/i18n/ca.po | 10 +- website_sale_product_brand/i18n/cs.po | 10 +- website_sale_product_brand/i18n/da.po | 10 +- website_sale_product_brand/i18n/de.po | 10 +- website_sale_product_brand/i18n/el_GR.po | 13 +- website_sale_product_brand/i18n/en_GB.po | 13 +- website_sale_product_brand/i18n/es.po | 10 +- website_sale_product_brand/i18n/es_AR.po | 13 +- website_sale_product_brand/i18n/es_CL.po | 13 +- website_sale_product_brand/i18n/es_CO.po | 13 +- website_sale_product_brand/i18n/es_CR.po | 13 +- website_sale_product_brand/i18n/es_DO.po | 13 +- website_sale_product_brand/i18n/es_EC.po | 13 +- website_sale_product_brand/i18n/es_MX.po | 13 +- website_sale_product_brand/i18n/es_PE.po | 13 +- website_sale_product_brand/i18n/et.po | 10 +- website_sale_product_brand/i18n/eu.po | 10 +- website_sale_product_brand/i18n/fa.po | 25 +- website_sale_product_brand/i18n/fi.po | 10 +- website_sale_product_brand/i18n/fr.po | 10 +- website_sale_product_brand/i18n/he.po | 10 +- website_sale_product_brand/i18n/hr.po | 13 +- website_sale_product_brand/i18n/hr_HR.po | 16 +- website_sale_product_brand/i18n/hu.po | 10 +- website_sale_product_brand/i18n/id.po | 10 +- website_sale_product_brand/i18n/it.po | 10 +- website_sale_product_brand/i18n/ja.po | 10 +- website_sale_product_brand/i18n/ko.po | 10 +- website_sale_product_brand/i18n/lt.po | 13 +- website_sale_product_brand/i18n/lv.po | 13 +- website_sale_product_brand/i18n/mk.po | 10 +- website_sale_product_brand/i18n/mn.po | 10 +- website_sale_product_brand/i18n/nb.po | 13 +- website_sale_product_brand/i18n/pl.po | 13 +- website_sale_product_brand/i18n/pt_BR.po | 13 +- website_sale_product_brand/i18n/ru.po | 14 +- website_sale_product_brand/i18n/sk.po | 10 +- website_sale_product_brand/i18n/sl.po | 18 +- website_sale_product_brand/i18n/sr.po | 13 +- website_sale_product_brand/i18n/sr@latin.po | 16 +- website_sale_product_brand/i18n/sv.po | 10 +- website_sale_product_brand/i18n/th.po | 10 +- website_sale_product_brand/i18n/uk.po | 13 +- website_sale_product_brand/i18n/vi.po | 10 +- .../i18n/website_sale_product_brand.pot | 40 ++ website_sale_product_brand/i18n/zh_CN.po | 13 +- website_sale_product_brand/i18n/zh_TW.po | 13 +- website_sale_product_brand/models/__init__.py | 5 - website_sale_product_brand/models/website.py | 17 - .../readme/CONTRIBUTORS.rst | 5 + .../readme/DESCRIPTION.rst | 7 + website_sale_product_brand/readme/INSTALL.rst | 2 + website_sale_product_brand/readme/USAGE.rst | 18 + .../static/description/index.html | 467 ++++++++++++++++++ .../static/src/js/tour.js | 40 ++ website_sale_product_brand/tests/__init__.py | 3 + website_sale_product_brand/tests/test_ui.py | 16 + .../views/product_brand.xml | 9 +- 69 files changed, 974 insertions(+), 425 deletions(-) rename website_sale_product_brand/{__openerp__.py => __manifest__.py} (65%) create mode 100644 website_sale_product_brand/demo/assets.xml create mode 100644 website_sale_product_brand/demo/product_brand_demo.xml create mode 100644 website_sale_product_brand/demo/product_product_demo.xml create mode 100644 website_sale_product_brand/i18n/website_sale_product_brand.pot delete mode 100644 website_sale_product_brand/models/__init__.py delete mode 100644 website_sale_product_brand/models/website.py create mode 100644 website_sale_product_brand/readme/CONTRIBUTORS.rst create mode 100644 website_sale_product_brand/readme/DESCRIPTION.rst create mode 100644 website_sale_product_brand/readme/INSTALL.rst create mode 100644 website_sale_product_brand/readme/USAGE.rst create mode 100644 website_sale_product_brand/static/description/index.html create mode 100644 website_sale_product_brand/static/src/js/tour.js create mode 100644 website_sale_product_brand/tests/__init__.py create mode 100644 website_sale_product_brand/tests/test_ui.py diff --git a/website_sale_product_brand/README.rst b/website_sale_product_brand/README.rst index 8c7c535240..7138e683cd 100644 --- a/website_sale_product_brand/README.rst +++ b/website_sale_product_brand/README.rst @@ -1,30 +1,52 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - -========================== -Website Sale Product Brand -========================== - -Description -=========== +================================== +Product Brand Filtering in Website +================================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fe--commerce-lightgray.png?logo=github + :target: https://github.com/OCA/e-commerce/tree/11.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-11-0/e-commerce-11-0-website_sale_product_brand + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/113/11.0 + :alt: Try me on Runbot + +|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 +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: + Installation ============ To install this module, you need to install following module: -->https://github.com/OCA/product-attribute/tree/9.0/product_brand +->https://github.com/OCA/product-attribute/tree/11.0/product_brand 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. @@ -40,56 +62,51 @@ 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 under shop menu. +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. -The blog here explains the HOWTO : - http://www.serpentcs.com/serpentcs-odoo-ecommerce-shop-brands-contribution -The Youtube Video is here : - https://www.youtube.com/watch?feature=player_embedded&v=LkV5umivylw - -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/113/50 - Bug Tracker =========== -Bugs are tracked on `GitHub Issues -`_. In case of trouble, please -check there if your issue has already been reported. If you spotted it first, -help us smashing it by providing a detailed and welcomed `feedback -`_. +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +~~~~~~~ -* Odoo Community Association: `Icon `_. +* Serpent Consulting Services Pvt. Ltd. +* Tecnativa Contributors ------------- +~~~~~~~~~~~~ * Jay Vora * Meet Dholakia +* `Tecnativa `_: -Maintainer ----------- + * Ernesto Tejeda -.. image:: http://odoo-community.org/logo.png - :alt: Odoo Community Association - :target: http://odoo-community.org +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. -To contribute to this module, please visit http://odoo-community.org. +This module is part of the `OCA/e-commerce `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/website_sale_product_brand/__init__.py b/website_sale_product_brand/__init__.py index a205695a51..bbd6b8031e 100644 --- a/website_sale_product_brand/__init__.py +++ b/website_sale_product_brand/__init__.py @@ -1,6 +1,4 @@ -# -*- coding: utf-8 -*- # © 2016 Serpent Consulting Services Pvt. Ltd. (http://www.serpentcs.com) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import controllers -from . import models diff --git a/website_sale_product_brand/__openerp__.py b/website_sale_product_brand/__manifest__.py similarity index 65% rename from website_sale_product_brand/__openerp__.py rename to website_sale_product_brand/__manifest__.py index 401d8602c3..83ecb0bc75 100644 --- a/website_sale_product_brand/__openerp__.py +++ b/website_sale_product_brand/__manifest__.py @@ -1,14 +1,14 @@ -# -*- coding: utf-8 -*- # © 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.," + 'author': "Serpent Consulting Services Pvt. Ltd., " + "Tecnativa, " "Odoo Community Association (OCA)", - 'website': 'http://www.serpentcs.com', - 'version': '9.0.1.1.1', + 'website': 'https://github.com/OCA/e-commerce', + 'version': '11.0.1.0.0', 'license': 'AGPL-3', 'depends': [ 'product_brand', @@ -19,6 +19,11 @@ "security/ir.model.access.csv", "views/product_brand.xml", ], + 'demo': [ + "demo/assets.xml", + "demo/product_brand_demo.xml", + "demo/product_product_demo.xml", + ], 'installable': True, 'auto_install': False, } diff --git a/website_sale_product_brand/controllers/__init__.py b/website_sale_product_brand/controllers/__init__.py index 89b3a0df1e..5025f0dd84 100644 --- a/website_sale_product_brand/controllers/__init__.py +++ b/website_sale_product_brand/controllers/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2016 Serpent Consulting Services Pvt. Ltd. (http://www.serpentcs.com) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/website_sale_product_brand/controllers/main.py b/website_sale_product_brand/controllers/main.py index df59e7c708..c8ec5699c1 100644 --- a/website_sale_product_brand/controllers/main.py +++ b/website_sale_product_brand/controllers/main.py @@ -1,15 +1,20 @@ -# -*- coding: utf-8 -*- # © 2016 Serpent Consulting Services Pvt. Ltd. (http://www.serpentcs.com) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp import http -from openerp.http import request -from openerp import SUPERUSER_ID -from openerp.addons.website_sale.controllers.main import QueryURL -from openerp.addons.website_sale.controllers.main import website_sale +from odoo import http +from odoo.http import request +from odoo.addons.website_sale.controllers.main import QueryURL +from odoo.addons.website_sale.controllers.main import WebsiteSale -class WebsiteSale(website_sale): +class WebsiteSale(WebsiteSale): + def _get_search_domain(self, search, category, attrib_values): + domain = super(WebsiteSale, self)._get_search_domain(search, category, + attrib_values) + if 'brand_id' in request.env.context: + domain.append( + ('product_brand_id', '=', request.env.context['brand_id'])) + return domain @http.route(['/shop', '/shop/page/', @@ -36,21 +41,16 @@ def shop(self, page=0, category=None, brand=None, search='', **post): auth='public', website=True) def product_brands(self, **post): - cr, context, pool = (request.cr, - request.context, - request.registry) - b_obj = pool['product.brand'] + b_obj = request.env['product.brand'] domain = [] if post.get('search'): domain += [('name', 'ilike', post.get('search'))] - brand_ids = b_obj.search(cr, SUPERUSER_ID, domain) - brand_rec = b_obj.browse(cr, SUPERUSER_ID, brand_ids, context=context) + brand_rec = b_obj.search(domain) 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.website.render( - 'website_sale_product_brand.product_brands', - values) + return request.render('website_sale_product_brand.product_brands', + values) diff --git a/website_sale_product_brand/demo/assets.xml b/website_sale_product_brand/demo/assets.xml new file mode 100644 index 0000000000..6af4cfc62f --- /dev/null +++ b/website_sale_product_brand/demo/assets.xml @@ -0,0 +1,13 @@ + + + + + +