[ADD] theme saas-11.3
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
Odoo Proprietary License v1.0
|
||||
|
||||
This software and associated files (the "Software") may only be used (executed,
|
||||
modified, executed after modifications) if you have purchased a valid license
|
||||
from the authors, typically via Odoo Apps, or if you have received a written
|
||||
agreement from the authors of the Software (see the COPYRIGHT file).
|
||||
|
||||
You may develop Odoo modules that use the Software as a library (typically
|
||||
by depending on it, importing it and using its resources), but without copying
|
||||
any source code or material from the Software. You may distribute those
|
||||
modules under the license of your choice, provided that this license is
|
||||
compatible with the terms of the Odoo Proprietary License (For example:
|
||||
LGPL, MIT, or proprietary licenses similar to this one).
|
||||
|
||||
It is forbidden to publish, distribute, sublicense, or sell copies of the Software
|
||||
or modified copies of the Software.
|
||||
|
||||
The above copyright notice and this permission notice must be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
'name': 'Theme Kea eCommerce Plugin',
|
||||
'description': 'Kea eCommerce Plugin',
|
||||
'category': 'Hidden',
|
||||
'sequence': 201,
|
||||
'version': '1.0',
|
||||
'depends': ['theme_kea', 'website_sale'],
|
||||
'data': [
|
||||
'views/theme.xml',
|
||||
'views/layout.xml',
|
||||
],
|
||||
'demo': [
|
||||
'demo/products.xml',
|
||||
],
|
||||
'auto_install': True,
|
||||
}
|
||||
@@ -0,0 +1,292 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
|
||||
<delete id="website_sale.sub_computers" model="product.public.category"/>
|
||||
<delete id="website_sale.Components" model="product.public.category"/>
|
||||
<delete id="website_sale.devices" model="product.public.category"/>
|
||||
<delete id="website_sale.laptops" model="product.public.category"/>
|
||||
<delete id="website_sale.network" model="product.public.category"/>
|
||||
<delete id="website_sale.Computer_all_in_one" model="product.public.category"/>
|
||||
<delete id="website_sale.External_Hard_Drive" model="product.public.category"/>
|
||||
<delete id="website_sale.Headset" model="product.public.category"/>
|
||||
<delete id="website_sale.Keyboard_Mouse" model="product.public.category"/>
|
||||
<delete id="website_sale.Pen_Drive" model="product.public.category"/>
|
||||
<delete id="website_sale.printer" model="product.public.category"/>
|
||||
<delete id="website_sale.Screen" model="product.public.category"/>
|
||||
<delete id="website_sale.server" model="product.public.category"/>
|
||||
<delete id="website_sale.services" model="product.public.category"/>
|
||||
<delete id="website_sale.Software" model="product.public.category"/>
|
||||
<delete id="website_sale.Speakers" model="product.public.category"/>
|
||||
|
||||
<!-- Create new categories -->
|
||||
|
||||
<record id="computers" model="product.public.category">
|
||||
<field name="name">Computers</field>
|
||||
</record>
|
||||
<record id="mac" model="product.public.category">
|
||||
<field name="parent_id" ref="computers"/>
|
||||
<field name="name">Mac</field>
|
||||
</record>
|
||||
<record id="pc" model="product.public.category">
|
||||
<field name="parent_id" ref="computers"/>
|
||||
<field name="name">PC</field>
|
||||
</record>
|
||||
|
||||
<record id="phones" model="product.public.category">
|
||||
<field name="name">Phones</field>
|
||||
</record>
|
||||
<record id="printers" model="product.public.category">
|
||||
<field name="name">Printers</field>
|
||||
</record>
|
||||
<record id="remote" model="product.public.category">
|
||||
<field name="name">Remote Controllers</field>
|
||||
</record>
|
||||
<record id="headphone" model="product.public.category">
|
||||
<field name="name">Headphones</field>
|
||||
</record>
|
||||
|
||||
<record id="accessories" model="product.public.category">
|
||||
<field name="name">Accessories</field>
|
||||
</record>
|
||||
<record id="mouse" model="product.public.category">
|
||||
<field name="parent_id" ref="accessories"/>
|
||||
<field name="name">Mouse</field>
|
||||
</record>
|
||||
<record id="keyboards" model="product.public.category">
|
||||
<field name="parent_id" ref="accessories"/>
|
||||
<field name="name">Keyboards</field>
|
||||
</record>
|
||||
<record id="other" model="product.public.category">
|
||||
<field name="parent_id" ref="accessories"/>
|
||||
<field name="name">Other</field>
|
||||
</record>
|
||||
|
||||
<record id="product_1" model="product.product">
|
||||
<field name="name">Asus Taichi</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.pc')])]"/>
|
||||
<field name="standard_price">1099.0</field>
|
||||
<field name="list_price">1099.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_01.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_2" model="product.product">
|
||||
<field name="name">Dell Laptop</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.pc')])]"/>
|
||||
<field name="standard_price">1300.0</field>
|
||||
<field name="list_price">1300.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_02.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_3" model="product.product">
|
||||
<field name="name">Apple Imac</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.mac')])]"/>
|
||||
<field name="standard_price">2700.0</field>
|
||||
<field name="list_price">2700.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_03.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_4" model="product.product">
|
||||
<field name="name">Macbook Pro</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.mac')])]"/>
|
||||
<field name="standard_price">2700.0</field>
|
||||
<field name="list_price">2700.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_04.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_5" model="product.product">
|
||||
<field name="name">Mac Pro</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.mac')])]"/>
|
||||
<field name="standard_price">3499.0</field>
|
||||
<field name="list_price">3499.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_05.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_6" model="product.product">
|
||||
<field name="name">Mac Mini</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.mac')])]"/>
|
||||
<field name="standard_price">889.0</field>
|
||||
<field name="list_price">889.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_06.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_7" model="product.product">
|
||||
<field name="name">Iphone 6</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.phones')])]"/>
|
||||
<field name="standard_price">699.0</field>
|
||||
<field name="list_price">699.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_07.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_8" model="product.product">
|
||||
<field name="name">Ipad Keyboard</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.keyboards')])]"/>
|
||||
<field name="standard_price">49.0</field>
|
||||
<field name="list_price">49.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_08.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_9" model="product.product">
|
||||
<field name="name">Edifier Headphone</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.headphone')])]"/>
|
||||
<field name="standard_price">149.0</field>
|
||||
<field name="list_price">149.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_09.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_10" model="product.product">
|
||||
<field name="name">Beats Headphone</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.headphone')])]"/>
|
||||
<field name="standard_price">349.0</field>
|
||||
<field name="list_price">349.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_10.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_11" model="product.product">
|
||||
<field name="name">Beat Tour-In-Ear Headphone</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.headphone')])]"/>
|
||||
<field name="standard_price">149.0</field>
|
||||
<field name="list_price">149.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_11.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_12" model="product.product">
|
||||
<field name="name">Apple Magic Mouse</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.mouse')])]"/>
|
||||
<field name="standard_price">89.0</field>
|
||||
<field name="list_price">89.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_12.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_13" model="product.product">
|
||||
<field name="name">Epson Expression Photo XP-950 Printer</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.printers')])]"/>
|
||||
<field name="standard_price">319.0</field>
|
||||
<field name="list_price">319.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_13.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_14" model="product.product">
|
||||
<field name="name">Apple Remote</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.remote')])]"/>
|
||||
<field name="standard_price">19.0</field>
|
||||
<field name="list_price">19.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_14.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_15" model="product.product">
|
||||
<field name="name">Sony Vaio Duo 13</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.pc')])]"/>
|
||||
<field name="standard_price">1399.0</field>
|
||||
<field name="list_price">1399.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_15.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
<record id="product_16" model="product.product">
|
||||
<field name="name">Bretford MobilePro</field>
|
||||
<field name="website_published">True</field>
|
||||
<field name="website_sequence">99</field>
|
||||
<field name="website_size_x">2</field>
|
||||
<field name="website_size_y">2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_kea_sale.other')])]"/>
|
||||
<field name="standard_price">149.0</field>
|
||||
<field name="list_price">149.0</field>
|
||||
<field name="type">consu</field>
|
||||
<field name="image" type="base64" file="theme_kea/static/src/img/content/product_img_16.jpg"/>
|
||||
<field name="uom_id" ref="uom.product_uom_unit"/>
|
||||
<field name="uom_po_id" ref="uom.product_uom_unit"/>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
|
||||
</openerp>
|
||||
@@ -0,0 +1,207 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_kea_sale
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# Ermin Trevisan <trevi@twanda.com>, 2019
|
||||
# Dejan Dinic, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-04-24 08:06+0000\n"
|
||||
"PO-Revision-Date: 2019-04-24 11:19+0000\n"
|
||||
"Last-Translator: Dejan Dinic, 2019\n"
|
||||
"Language-Team: German (https://www.transifex.com/odoo/teams/41243/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: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid ""
|
||||
"<i class=\"fa fa-shopping-cart\"/>\n"
|
||||
" Add to Cart"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-shopping-cart\"/>\n"
|
||||
"In den Einkaufskorb"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.accessories
|
||||
msgid "Accessories"
|
||||
msgstr "Zubehör"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_3
|
||||
#: model:product.template,name:theme_kea_sale.product_3_product_template
|
||||
msgid "Apple Imac"
|
||||
msgstr "Apple Imac"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_12
|
||||
#: model:product.template,name:theme_kea_sale.product_12_product_template
|
||||
msgid "Apple Magic Mouse"
|
||||
msgstr "Apple Magic Mouse"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_14
|
||||
#: model:product.template,name:theme_kea_sale.product_14_product_template
|
||||
msgid "Apple Remote"
|
||||
msgstr "Apple Remote"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_1
|
||||
#: model:product.template,name:theme_kea_sale.product_1_product_template
|
||||
msgid "Asus Taichi"
|
||||
msgstr "Asus Taichi"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_11
|
||||
#: model:product.template,name:theme_kea_sale.product_11_product_template
|
||||
msgid "Beat Tour-In-Ear Headphone"
|
||||
msgstr "Beat Tour-In-Ear Kopfhörer"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_10
|
||||
#: model:product.template,name:theme_kea_sale.product_10_product_template
|
||||
msgid "Beats Headphone"
|
||||
msgstr "Beats Kopfhörer"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_16
|
||||
#: model:product.template,name:theme_kea_sale.product_16_product_template
|
||||
msgid "Bretford MobilePro"
|
||||
msgstr "Bretford MobilePro"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.computers
|
||||
msgid "Computers"
|
||||
msgstr "Computers"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_2
|
||||
#: model:product.template,name:theme_kea_sale.product_2_product_template
|
||||
msgid "Dell Laptop"
|
||||
msgstr "Dell Laptop"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_9
|
||||
#: model:product.template,name:theme_kea_sale.product_9_product_template
|
||||
msgid "Edifier Headphone"
|
||||
msgstr "Edifier Kopfhörer"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_13
|
||||
#: model:product.template,name:theme_kea_sale.product_13_product_template
|
||||
msgid "Epson Expression Photo XP-950 Printer"
|
||||
msgstr "Epson Expression Photo XP-950 Drucker"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.headphone
|
||||
msgid "Headphones"
|
||||
msgstr "Kopfhörer"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_8
|
||||
#: model:product.template,name:theme_kea_sale.product_8_product_template
|
||||
msgid "Ipad Keyboard"
|
||||
msgstr "Ipad Tastatur"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_7
|
||||
#: model:product.template,name:theme_kea_sale.product_7_product_template
|
||||
msgid "Iphone 6"
|
||||
msgstr "Iphone 6"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.keyboards
|
||||
msgid "Keyboards"
|
||||
msgstr "Tastaturen"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mac
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_6
|
||||
#: model:product.template,name:theme_kea_sale.product_6_product_template
|
||||
msgid "Mac Mini"
|
||||
msgstr "Mac Mini"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_5
|
||||
#: model:product.template,name:theme_kea_sale.product_5_product_template
|
||||
msgid "Mac Pro"
|
||||
msgstr "Mac Pro"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_4
|
||||
#: model:product.template,name:theme_kea_sale.product_4_product_template
|
||||
msgid "Macbook Pro"
|
||||
msgstr "Macbook Pro"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mouse
|
||||
msgid "Mouse"
|
||||
msgstr "Maus"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.other
|
||||
msgid "Other"
|
||||
msgstr "Andere"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.pc
|
||||
msgid "PC"
|
||||
msgstr "PC"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.phones
|
||||
msgid "Phones"
|
||||
msgstr "Telefone"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.printers
|
||||
msgid "Printers"
|
||||
msgstr "Drucker"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid "Product Name"
|
||||
msgstr "Produktname"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_categories
|
||||
msgid "Product categories"
|
||||
msgstr "Produktkategorie"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_filters
|
||||
msgid "Product filters"
|
||||
msgstr "Produktfilter"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.remote
|
||||
msgid "Remote Controllers"
|
||||
msgstr "Fernbedienungen"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "Search..."
|
||||
msgstr "Suchen..."
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_15
|
||||
#: model:product.template,name:theme_kea_sale.product_15_product_template
|
||||
msgid "Sony Vaio Duo 13"
|
||||
msgstr "Sony Vaio Duo 13"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "pagination form-inline col-md-12"
|
||||
msgstr "pagination form-inline col-md-12"
|
||||
@@ -0,0 +1,202 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_kea_sale
|
||||
#
|
||||
# Translators:
|
||||
# David Arnold <blaggacao@users.noreply.github.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-24 12:48+0000\n"
|
||||
"PO-Revision-Date: 2017-03-24 12:48+0000\n"
|
||||
"Last-Translator: David Arnold <blaggacao@users.noreply.github.com>, 2017\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/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: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid ""
|
||||
"<i class=\"fa fa-shopping-cart\"/>\n"
|
||||
" Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.accessories
|
||||
msgid "Accessories"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_3
|
||||
#: model:product.template,name:theme_kea_sale.product_3_product_template
|
||||
msgid "Apple Imac"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_12
|
||||
#: model:product.template,name:theme_kea_sale.product_12_product_template
|
||||
msgid "Apple Magic Mouse"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_14
|
||||
#: model:product.template,name:theme_kea_sale.product_14_product_template
|
||||
msgid "Apple Remote"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_1
|
||||
#: model:product.template,name:theme_kea_sale.product_1_product_template
|
||||
msgid "Asus Taichi"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_11
|
||||
#: model:product.template,name:theme_kea_sale.product_11_product_template
|
||||
msgid "Beat Tour-In-Ear Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_10
|
||||
#: model:product.template,name:theme_kea_sale.product_10_product_template
|
||||
msgid "Beats Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_16
|
||||
#: model:product.template,name:theme_kea_sale.product_16_product_template
|
||||
msgid "Bretford MobilePro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.computers
|
||||
msgid "Computers"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_2
|
||||
#: model:product.template,name:theme_kea_sale.product_2_product_template
|
||||
msgid "Dell Laptop"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_9
|
||||
#: model:product.template,name:theme_kea_sale.product_9_product_template
|
||||
msgid "Edifier Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_13
|
||||
#: model:product.template,name:theme_kea_sale.product_13_product_template
|
||||
msgid "Epson Expression Photo XP-950 Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.headphone
|
||||
msgid "Headphones"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_8
|
||||
#: model:product.template,name:theme_kea_sale.product_8_product_template
|
||||
msgid "Ipad Keyboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_7
|
||||
#: model:product.template,name:theme_kea_sale.product_7_product_template
|
||||
msgid "Iphone 6"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.keyboards
|
||||
msgid "Keyboards"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mac
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_6
|
||||
#: model:product.template,name:theme_kea_sale.product_6_product_template
|
||||
msgid "Mac Mini"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_5
|
||||
#: model:product.template,name:theme_kea_sale.product_5_product_template
|
||||
msgid "Mac Pro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_4
|
||||
#: model:product.template,name:theme_kea_sale.product_4_product_template
|
||||
msgid "Macbook Pro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mouse
|
||||
msgid "Mouse"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.other
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.pc
|
||||
msgid "PC"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.phones
|
||||
msgid "Phones"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.printers
|
||||
msgid "Printers"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_categories
|
||||
msgid "Product categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_filters
|
||||
msgid "Product filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.remote
|
||||
msgid "Remote Controllers"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "Search..."
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_15
|
||||
#: model:product.template,name:theme_kea_sale.product_15_product_template
|
||||
msgid "Sony Vaio Duo 13"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "pagination form-inline col-md-12"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,204 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_kea_sale
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# Fabien Pinckaers <fp@openerp.com>, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-04-24 08:06+0000\n"
|
||||
"PO-Revision-Date: 2019-04-24 11:19+0000\n"
|
||||
"Last-Translator: Fabien Pinckaers <fp@openerp.com>, 2019\n"
|
||||
"Language-Team: French (https://www.transifex.com/odoo/teams/41243/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: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid ""
|
||||
"<i class=\"fa fa-shopping-cart\"/>\n"
|
||||
" Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.accessories
|
||||
msgid "Accessories"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_3
|
||||
#: model:product.template,name:theme_kea_sale.product_3_product_template
|
||||
msgid "Apple Imac"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_12
|
||||
#: model:product.template,name:theme_kea_sale.product_12_product_template
|
||||
msgid "Apple Magic Mouse"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_14
|
||||
#: model:product.template,name:theme_kea_sale.product_14_product_template
|
||||
msgid "Apple Remote"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_1
|
||||
#: model:product.template,name:theme_kea_sale.product_1_product_template
|
||||
msgid "Asus Taichi"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_11
|
||||
#: model:product.template,name:theme_kea_sale.product_11_product_template
|
||||
msgid "Beat Tour-In-Ear Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_10
|
||||
#: model:product.template,name:theme_kea_sale.product_10_product_template
|
||||
msgid "Beats Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_16
|
||||
#: model:product.template,name:theme_kea_sale.product_16_product_template
|
||||
msgid "Bretford MobilePro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.computers
|
||||
msgid "Computers"
|
||||
msgstr "Ordinateurs"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_2
|
||||
#: model:product.template,name:theme_kea_sale.product_2_product_template
|
||||
msgid "Dell Laptop"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_9
|
||||
#: model:product.template,name:theme_kea_sale.product_9_product_template
|
||||
msgid "Edifier Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_13
|
||||
#: model:product.template,name:theme_kea_sale.product_13_product_template
|
||||
msgid "Epson Expression Photo XP-950 Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.headphone
|
||||
msgid "Headphones"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_8
|
||||
#: model:product.template,name:theme_kea_sale.product_8_product_template
|
||||
msgid "Ipad Keyboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_7
|
||||
#: model:product.template,name:theme_kea_sale.product_7_product_template
|
||||
msgid "Iphone 6"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.keyboards
|
||||
msgid "Keyboards"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mac
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_6
|
||||
#: model:product.template,name:theme_kea_sale.product_6_product_template
|
||||
msgid "Mac Mini"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_5
|
||||
#: model:product.template,name:theme_kea_sale.product_5_product_template
|
||||
msgid "Mac Pro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_4
|
||||
#: model:product.template,name:theme_kea_sale.product_4_product_template
|
||||
msgid "Macbook Pro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mouse
|
||||
msgid "Mouse"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.other
|
||||
msgid "Other"
|
||||
msgstr "Autre"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.pc
|
||||
msgid "PC"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.phones
|
||||
msgid "Phones"
|
||||
msgstr "Téléphones"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.printers
|
||||
msgid "Printers"
|
||||
msgstr "Imprimantes"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid "Product Name"
|
||||
msgstr "Nom de l'article"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_categories
|
||||
msgid "Product categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_filters
|
||||
msgid "Product filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.remote
|
||||
msgid "Remote Controllers"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "Search..."
|
||||
msgstr "Recherche…"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_15
|
||||
#: model:product.template,name:theme_kea_sale.product_15_product_template
|
||||
msgid "Sony Vaio Duo 13"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "pagination form-inline col-md-12"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,205 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_kea_sale
|
||||
#
|
||||
# Translators:
|
||||
# Yenthe Van Ginneken <yenthespam@gmail.com>, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-04-24 08:06+0000\n"
|
||||
"PO-Revision-Date: 2019-04-24 11:19+0000\n"
|
||||
"Last-Translator: Yenthe Van Ginneken <yenthespam@gmail.com>, 2019\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid ""
|
||||
"<i class=\"fa fa-shopping-cart\"/>\n"
|
||||
" Add to Cart"
|
||||
msgstr ""
|
||||
"<i class=\"fa fa-shopping-cart\"/>\n"
|
||||
" Toevoegen aan winkelmandje"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.accessories
|
||||
msgid "Accessories"
|
||||
msgstr "Accessoires"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_3
|
||||
#: model:product.template,name:theme_kea_sale.product_3_product_template
|
||||
msgid "Apple Imac"
|
||||
msgstr "Apple Ima"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_12
|
||||
#: model:product.template,name:theme_kea_sale.product_12_product_template
|
||||
msgid "Apple Magic Mouse"
|
||||
msgstr "Apple Magic Mouse"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_14
|
||||
#: model:product.template,name:theme_kea_sale.product_14_product_template
|
||||
msgid "Apple Remote"
|
||||
msgstr "Apple Remote"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_1
|
||||
#: model:product.template,name:theme_kea_sale.product_1_product_template
|
||||
msgid "Asus Taichi"
|
||||
msgstr "Asus Taichi"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_11
|
||||
#: model:product.template,name:theme_kea_sale.product_11_product_template
|
||||
msgid "Beat Tour-In-Ear Headphone"
|
||||
msgstr "Beat Tour-In-oor koptelefoon"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_10
|
||||
#: model:product.template,name:theme_kea_sale.product_10_product_template
|
||||
msgid "Beats Headphone"
|
||||
msgstr "Beats koptelefoon"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_16
|
||||
#: model:product.template,name:theme_kea_sale.product_16_product_template
|
||||
msgid "Bretford MobilePro"
|
||||
msgstr "Bretford MobilePro"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.computers
|
||||
msgid "Computers"
|
||||
msgstr "Computers"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_2
|
||||
#: model:product.template,name:theme_kea_sale.product_2_product_template
|
||||
msgid "Dell Laptop"
|
||||
msgstr "Dell laptop"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_9
|
||||
#: model:product.template,name:theme_kea_sale.product_9_product_template
|
||||
msgid "Edifier Headphone"
|
||||
msgstr "Edifier koptelefoon"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_13
|
||||
#: model:product.template,name:theme_kea_sale.product_13_product_template
|
||||
msgid "Epson Expression Photo XP-950 Printer"
|
||||
msgstr "Epson Expression Photo XP-950 Printer"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.headphone
|
||||
msgid "Headphones"
|
||||
msgstr "Koptelefoons"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_8
|
||||
#: model:product.template,name:theme_kea_sale.product_8_product_template
|
||||
msgid "Ipad Keyboard"
|
||||
msgstr "iPad toetsenbord"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_7
|
||||
#: model:product.template,name:theme_kea_sale.product_7_product_template
|
||||
msgid "Iphone 6"
|
||||
msgstr "iPhone 6"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.keyboards
|
||||
msgid "Keyboards"
|
||||
msgstr "Toetsenborden"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mac
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_6
|
||||
#: model:product.template,name:theme_kea_sale.product_6_product_template
|
||||
msgid "Mac Mini"
|
||||
msgstr "Mac Mini"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_5
|
||||
#: model:product.template,name:theme_kea_sale.product_5_product_template
|
||||
msgid "Mac Pro"
|
||||
msgstr "Mac Pro"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_4
|
||||
#: model:product.template,name:theme_kea_sale.product_4_product_template
|
||||
msgid "Macbook Pro"
|
||||
msgstr "Macbook Pro"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mouse
|
||||
msgid "Mouse"
|
||||
msgstr "Muis"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.other
|
||||
msgid "Other"
|
||||
msgstr "Overige"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.pc
|
||||
msgid "PC"
|
||||
msgstr "PC"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.phones
|
||||
msgid "Phones"
|
||||
msgstr "Telefoons"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.printers
|
||||
msgid "Printers"
|
||||
msgstr "Printers"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid "Product Name"
|
||||
msgstr "Productnaam"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_categories
|
||||
msgid "Product categories"
|
||||
msgstr "Productcategorieën"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_filters
|
||||
msgid "Product filters"
|
||||
msgstr "Product filters"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.remote
|
||||
msgid "Remote Controllers"
|
||||
msgstr "Afstandsbedieningen"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "Search..."
|
||||
msgstr "Zoek..."
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_15
|
||||
#: model:product.template,name:theme_kea_sale.product_15_product_template
|
||||
msgid "Sony Vaio Duo 13"
|
||||
msgstr "Sony Vaio Duo 13"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "pagination form-inline col-md-12"
|
||||
msgstr "pagination form-inline col-md-12"
|
||||
@@ -0,0 +1,199 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_kea_sale
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-04-24 08:06+0000\n"
|
||||
"PO-Revision-Date: 2019-04-24 08:06+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid "<i class=\"fa fa-shopping-cart\"/>\n"
|
||||
" Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.accessories
|
||||
msgid "Accessories"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_3
|
||||
#: model:product.template,name:theme_kea_sale.product_3_product_template
|
||||
msgid "Apple Imac"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_12
|
||||
#: model:product.template,name:theme_kea_sale.product_12_product_template
|
||||
msgid "Apple Magic Mouse"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_14
|
||||
#: model:product.template,name:theme_kea_sale.product_14_product_template
|
||||
msgid "Apple Remote"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_1
|
||||
#: model:product.template,name:theme_kea_sale.product_1_product_template
|
||||
msgid "Asus Taichi"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_11
|
||||
#: model:product.template,name:theme_kea_sale.product_11_product_template
|
||||
msgid "Beat Tour-In-Ear Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_10
|
||||
#: model:product.template,name:theme_kea_sale.product_10_product_template
|
||||
msgid "Beats Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_16
|
||||
#: model:product.template,name:theme_kea_sale.product_16_product_template
|
||||
msgid "Bretford MobilePro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.computers
|
||||
msgid "Computers"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_2
|
||||
#: model:product.template,name:theme_kea_sale.product_2_product_template
|
||||
msgid "Dell Laptop"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_9
|
||||
#: model:product.template,name:theme_kea_sale.product_9_product_template
|
||||
msgid "Edifier Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_13
|
||||
#: model:product.template,name:theme_kea_sale.product_13_product_template
|
||||
msgid "Epson Expression Photo XP-950 Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.headphone
|
||||
msgid "Headphones"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_8
|
||||
#: model:product.template,name:theme_kea_sale.product_8_product_template
|
||||
msgid "Ipad Keyboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_7
|
||||
#: model:product.template,name:theme_kea_sale.product_7_product_template
|
||||
msgid "Iphone 6"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.keyboards
|
||||
msgid "Keyboards"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mac
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_6
|
||||
#: model:product.template,name:theme_kea_sale.product_6_product_template
|
||||
msgid "Mac Mini"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_5
|
||||
#: model:product.template,name:theme_kea_sale.product_5_product_template
|
||||
msgid "Mac Pro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_4
|
||||
#: model:product.template,name:theme_kea_sale.product_4_product_template
|
||||
msgid "Macbook Pro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mouse
|
||||
msgid "Mouse"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.other
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.pc
|
||||
msgid "PC"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.phones
|
||||
msgid "Phones"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.printers
|
||||
msgid "Printers"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_categories
|
||||
msgid "Product categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_filters
|
||||
msgid "Product filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.remote
|
||||
msgid "Remote Controllers"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "Search..."
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_15
|
||||
#: model:product.template,name:theme_kea_sale.product_15_product_template
|
||||
msgid "Sony Vaio Duo 13"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "pagination form-inline col-md-12"
|
||||
msgstr ""
|
||||
|
||||
@@ -0,0 +1,205 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_kea_sale
|
||||
#
|
||||
# Translators:
|
||||
# liAnGjiA <liangjia@qq.com>, 2019
|
||||
# Martin Trigaux, 2019
|
||||
# Gary Wei <Gary.wei@elico-corp.com>, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-04-24 08:06+0000\n"
|
||||
"PO-Revision-Date: 2019-04-24 11:19+0000\n"
|
||||
"Last-Translator: Gary Wei <Gary.wei@elico-corp.com>, 2019\n"
|
||||
"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/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: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid ""
|
||||
"<i class=\"fa fa-shopping-cart\"/>\n"
|
||||
" Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.accessories
|
||||
msgid "Accessories"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_3
|
||||
#: model:product.template,name:theme_kea_sale.product_3_product_template
|
||||
msgid "Apple Imac"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_12
|
||||
#: model:product.template,name:theme_kea_sale.product_12_product_template
|
||||
msgid "Apple Magic Mouse"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_14
|
||||
#: model:product.template,name:theme_kea_sale.product_14_product_template
|
||||
msgid "Apple Remote"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_1
|
||||
#: model:product.template,name:theme_kea_sale.product_1_product_template
|
||||
msgid "Asus Taichi"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_11
|
||||
#: model:product.template,name:theme_kea_sale.product_11_product_template
|
||||
msgid "Beat Tour-In-Ear Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_10
|
||||
#: model:product.template,name:theme_kea_sale.product_10_product_template
|
||||
msgid "Beats Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_16
|
||||
#: model:product.template,name:theme_kea_sale.product_16_product_template
|
||||
msgid "Bretford MobilePro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.computers
|
||||
msgid "Computers"
|
||||
msgstr "电脑"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_2
|
||||
#: model:product.template,name:theme_kea_sale.product_2_product_template
|
||||
msgid "Dell Laptop"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_9
|
||||
#: model:product.template,name:theme_kea_sale.product_9_product_template
|
||||
msgid "Edifier Headphone"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_13
|
||||
#: model:product.template,name:theme_kea_sale.product_13_product_template
|
||||
msgid "Epson Expression Photo XP-950 Printer"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.headphone
|
||||
msgid "Headphones"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_8
|
||||
#: model:product.template,name:theme_kea_sale.product_8_product_template
|
||||
msgid "Ipad Keyboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_7
|
||||
#: model:product.template,name:theme_kea_sale.product_7_product_template
|
||||
msgid "Iphone 6"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.keyboards
|
||||
msgid "Keyboards"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mac
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_6
|
||||
#: model:product.template,name:theme_kea_sale.product_6_product_template
|
||||
msgid "Mac Mini"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_5
|
||||
#: model:product.template,name:theme_kea_sale.product_5_product_template
|
||||
msgid "Mac Pro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_4
|
||||
#: model:product.template,name:theme_kea_sale.product_4_product_template
|
||||
msgid "Macbook Pro"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.mouse
|
||||
msgid "Mouse"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.other
|
||||
msgid "Other"
|
||||
msgstr "其他"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.pc
|
||||
msgid "PC"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.phones
|
||||
msgid "Phones"
|
||||
msgstr "电话"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.printers
|
||||
msgid "Printers"
|
||||
msgstr "打印机"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.product
|
||||
msgid "Product Name"
|
||||
msgstr "产品名称"
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_categories
|
||||
msgid "Product categories"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.products_filters
|
||||
msgid "Product filters"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.public.category,name:theme_kea_sale.remote
|
||||
msgid "Remote Controllers"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "Search..."
|
||||
msgstr "搜索..."
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:product.product,name:theme_kea_sale.product_15
|
||||
#: model:product.template,name:theme_kea_sale.product_15_product_template
|
||||
msgid "Sony Vaio Duo 13"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_kea_sale
|
||||
#: model:ir.ui.view,arch_db:theme_kea_sale.search
|
||||
msgid "pagination form-inline col-md-12"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,12 @@
|
||||
#top_menu {
|
||||
.my_cart_quantity {
|
||||
color: @color-beta;
|
||||
}
|
||||
}
|
||||
#products_grid {
|
||||
.oe_product_cart {
|
||||
section a {
|
||||
color: @color-beta !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,453 @@
|
||||
#wrap > .container-fluid form.pagination, #wrap > .container form.pagination {
|
||||
float: right;
|
||||
width: 100%;
|
||||
padding-right: 0;
|
||||
}
|
||||
#website_published_button {
|
||||
min-height: 50px;
|
||||
}
|
||||
.oe_website_sale {
|
||||
overflow: hidden;
|
||||
padding-bottom: 20px;
|
||||
background-color: @color-alpha;
|
||||
.page-header {
|
||||
small {
|
||||
a {
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
}
|
||||
.oe_product_cart {
|
||||
border: 1px solid @gray-lighter;
|
||||
.in {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
}
|
||||
.oe_product {
|
||||
border: 0;
|
||||
h5 {
|
||||
a {
|
||||
color: @color-epsilon;
|
||||
}
|
||||
}
|
||||
.ribbon {
|
||||
background-color: red;
|
||||
top: 0px;
|
||||
width: 145px;
|
||||
}
|
||||
|
||||
// Product name, price and quick cart part
|
||||
|
||||
section {
|
||||
padding: 0px 15px;
|
||||
background: rgba(240, 240, 240, 0.9);
|
||||
border-top: 1px solid @gray-lighter;
|
||||
h5 {
|
||||
padding: 10px 0px;
|
||||
font-size: 13px;
|
||||
margin: 0px;
|
||||
text-align: right;
|
||||
border-bottom: 1px solid @gray-lighter;
|
||||
a {
|
||||
color: @color-delta;
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.text-info {
|
||||
text-align: left;
|
||||
color: @gray-light;
|
||||
}
|
||||
.oe_subdescription {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
.product_price {
|
||||
font-size: 12px;
|
||||
position: relative;
|
||||
text-align: right;
|
||||
padding: 0;
|
||||
b {
|
||||
.text-danger {
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
.btn-default { // cart btn
|
||||
background: rgba(0, 0, 0, 0);
|
||||
border: none;
|
||||
font-size: 15px;
|
||||
position: relative;
|
||||
padding-right: 0px;
|
||||
top: -6px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#products_grid {
|
||||
padding-left: 15px;
|
||||
table, tbody {
|
||||
background-color: rgba(0, 0, 0, 0) !important;
|
||||
}
|
||||
.products_pager {
|
||||
margin-top: 15px;
|
||||
text-align: right;
|
||||
ul {
|
||||
text-align: center;
|
||||
a {
|
||||
border: rgba(0, 0, 0, 0);
|
||||
color: @gray;
|
||||
min-width: 35px;
|
||||
}
|
||||
}
|
||||
.dropdown-menu {
|
||||
right: 0;
|
||||
left: auto;
|
||||
}
|
||||
}
|
||||
.pagination > .active > a {
|
||||
border-bottom: 3px solid @color-epsilon;
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
color: @color-epsilon;
|
||||
}
|
||||
.pagination a {
|
||||
.transition (all 0.3s ease-out);
|
||||
&:hover {
|
||||
border-bottom: 3px solid @color-delta;
|
||||
background: rgba(0, 0, 0, 0);
|
||||
color: @gray-light;
|
||||
}
|
||||
}
|
||||
.products_pager > ul {
|
||||
li:first-child > a {
|
||||
border-top-left-radius: 0px;
|
||||
border-bottom-left-radius: 0px;
|
||||
}
|
||||
li:last-child > a {
|
||||
border-top-right-radius: 0px;
|
||||
border-bottom-right-radius: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* =================== Search =================== */
|
||||
|
||||
#wrap {
|
||||
.search {
|
||||
background-color: @color-beta;
|
||||
}
|
||||
}
|
||||
.form-inline .input-group {
|
||||
background-color: white;
|
||||
width: 100%;
|
||||
.form-control {
|
||||
width: 100%;
|
||||
.BorderRadius (0px);
|
||||
height: 50px;
|
||||
box-shadow: none;
|
||||
text-transform: lowercase;
|
||||
border: none;
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
.input-group-btn {
|
||||
width: 50px;
|
||||
.btn-default {
|
||||
.BorderRadius (0px);
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
&:hover {
|
||||
background-color: white !important;
|
||||
}
|
||||
}
|
||||
.btn {
|
||||
line-height: 2.5;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* =================== Categories =================== */
|
||||
|
||||
#products_grid_before {
|
||||
padding: 15px 0px;
|
||||
padding-bottom: 800em;
|
||||
margin-bottom: -800em;
|
||||
ul.nav-stacked {
|
||||
li {
|
||||
a {
|
||||
font-size: 16px;
|
||||
color: @gray-light;
|
||||
&:hover, &:focus {
|
||||
background-color: @gray-lighter;
|
||||
color: @gray;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#o_shop_collapse_category {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
i {
|
||||
color: @color-epsilon;
|
||||
}
|
||||
}
|
||||
.nav-pills > li > ul {
|
||||
padding-left: 15px;
|
||||
}
|
||||
> ul > li > a {
|
||||
color: @color-epsilon !important;
|
||||
text-transform: uppercase;
|
||||
font-size: 18px !important;
|
||||
}
|
||||
.category-name {
|
||||
text-align: left;
|
||||
margin-top: 0px;
|
||||
padding: 10px 15px;
|
||||
color: @color-gamma;
|
||||
border-bottom: 1px solid @gray-lighter;
|
||||
}
|
||||
|
||||
/* =========== Filters ========== */
|
||||
|
||||
.js_attributes {
|
||||
padding: 0px 15px 15px 15px;
|
||||
strong {
|
||||
display: block;
|
||||
padding-left: 10px;
|
||||
margin-bottom: 10px;
|
||||
margin-top: 10px;
|
||||
color: @color-gamma;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.css_attribute_color.active {
|
||||
border: 5px ridge @color-alpha;
|
||||
}
|
||||
li > ul {
|
||||
display: block;
|
||||
}
|
||||
label > span {
|
||||
color: @gray;
|
||||
}
|
||||
}
|
||||
/* =========================== */
|
||||
}
|
||||
|
||||
/* =================== Product page =================== */
|
||||
.js_sale {
|
||||
.container-fluid > .row:first-child, .container:first-child > .row:first-child {
|
||||
background-color: @color-eta;
|
||||
}
|
||||
.breadcrumb {
|
||||
padding-top: 20px;
|
||||
background: rgba(0, 0, 0, 0);
|
||||
border-bottom: 1px solid @gray-lighter;
|
||||
li {
|
||||
font-size: 15px;
|
||||
a {
|
||||
color: @color-gamma;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.js_add_cart_variants > li {
|
||||
> strong {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
.js_add_cart_variants {
|
||||
color: @gray;
|
||||
|
||||
/* ======== PRICE ======== */
|
||||
|
||||
.oe_price_h4 {
|
||||
font-size: 18px;
|
||||
.oe_currency_value {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.discount .oe_default_price {
|
||||
display: inline-block;
|
||||
}
|
||||
.product-title {
|
||||
padding: 0px 0px 50px 0px;
|
||||
text-align: center;
|
||||
color: @gray;
|
||||
}
|
||||
.product-description {
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
}
|
||||
#add_to_cart {
|
||||
padding-top: 15px;
|
||||
margin: 20px 0;
|
||||
.transition (all 0.5s ease-out);
|
||||
.fa {
|
||||
font-size: 25px;
|
||||
padding-bottom: 10px;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
/* ======= ADD QUANTITY ========= */
|
||||
|
||||
.oe_website_spinner {
|
||||
margin-bottom: 25px;
|
||||
@media (max-width: @screen-xs-max) {
|
||||
margin-left: 0;
|
||||
}
|
||||
.input-group-addon {
|
||||
border-radius: 0px;
|
||||
color: white;
|
||||
|
||||
&:first-child, &:last-child {
|
||||
border: none;
|
||||
background-color: @gray;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
.js_quantity {
|
||||
text-align: center;
|
||||
border-color: @gray;
|
||||
}
|
||||
}
|
||||
.badge, .active > a > .badge {
|
||||
padding: 5px 10px;
|
||||
margin-left: 15px;
|
||||
background-color: @color-gamma;
|
||||
color: white;
|
||||
min-width: 28px;
|
||||
}
|
||||
.list-unstyled .css_attribute_color.active {
|
||||
border: 3px solid @color-gamma;
|
||||
}
|
||||
#website_sale_recommended_products {
|
||||
padding: 30px;
|
||||
h3 {
|
||||
text-align: center;
|
||||
border-bottom: 5px solid @color-epsilon;
|
||||
padding-bottom: 20px;
|
||||
color: @color-gamma;
|
||||
}
|
||||
.row {
|
||||
padding: 0 15px;
|
||||
}
|
||||
.col-md-2 {
|
||||
margin-top: 10px;
|
||||
min-height: 160px;
|
||||
span {
|
||||
color: @color-epsilon;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ===================== Product list view ======================= */
|
||||
|
||||
.oe_list {
|
||||
margin: 5px 0 5px 15px;
|
||||
border: 1px solid @gray-lighter;
|
||||
width: 90% !important;
|
||||
section {
|
||||
h5 {
|
||||
text-align: left !important;
|
||||
}
|
||||
.product_price {
|
||||
display: inline-block;
|
||||
}
|
||||
.oe_subdescription {
|
||||
max-width: 70%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* =================== Modal =================== */
|
||||
#modal_optional_products {
|
||||
.modal-title {
|
||||
background: rgba(0, 0, 0, 0);
|
||||
}
|
||||
.input-group {
|
||||
border-collapse: inherit;
|
||||
}
|
||||
}
|
||||
/* =================== Shopping cart =================== */
|
||||
.oe_website_sale {
|
||||
color: @gray;
|
||||
.oe_cart {
|
||||
.btn {
|
||||
@media (max-width: @screen-xs-max) {
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
strong {
|
||||
color: @gray;
|
||||
}
|
||||
.well {
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
#cart_products {
|
||||
img {
|
||||
max-width: 100px;
|
||||
}
|
||||
}
|
||||
.oe_website_spinner {
|
||||
margin: auto;
|
||||
border-collapse: inherit;
|
||||
}
|
||||
.a-submit {
|
||||
padding: 20px 0px;
|
||||
min-width: 150px;
|
||||
}
|
||||
h4 .oe_currency_value, h4 .text-right {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
#right_column {
|
||||
color: @gray;
|
||||
a {
|
||||
color: red;
|
||||
}
|
||||
.btn {
|
||||
.BorderRadius (0px);
|
||||
border: none;
|
||||
}
|
||||
.input-group-btn {
|
||||
padding-left: 5px;
|
||||
}
|
||||
h4 {
|
||||
color: @gray;
|
||||
border-bottom: 1px solid @gray;
|
||||
font-size: 22px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.fa {
|
||||
padding-right: 5px;
|
||||
}
|
||||
}
|
||||
.wizard {
|
||||
padding-right: 15px;
|
||||
box-shadow: none;
|
||||
@media (max-width: @screen-sm-min) {
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
li {
|
||||
@media (max-width: @screen-sm-min) {
|
||||
padding-left: 7px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ======================== PAY =========================== */
|
||||
.oe_sale_acquirer_button {
|
||||
.btn {
|
||||
min-width: 150px;
|
||||
text-transform: uppercase;
|
||||
font-size: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,136 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
<!-- Product grid view -->
|
||||
<template id="products" inherit_id='website_sale.products' name="Products" priority="15">
|
||||
<xpath expr="//*[hasclass('oe_website_sale')]//*[1]" position="before">
|
||||
<t t-call="theme_kea_sale.search"/>
|
||||
</xpath>
|
||||
<!-- Use container fluid instead of container -->
|
||||
<xpath expr="//div[hasclass('oe_website_sale')]" position="attributes">
|
||||
<attribute name="class">container-fluid oe_website_sale</attribute>
|
||||
</xpath>
|
||||
|
||||
<!-- Add pager to the top and bottom -->
|
||||
<xpath expr="//div[@id='products_grid']/*[1]" position="before">
|
||||
<div class="products_pager">
|
||||
<div class="row">
|
||||
<t t-call="website_sale.pricelist_list"/>
|
||||
<t t-call="website.pager"/>
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
<xpath expr="//div[@id='products_grid']/*[last()]" position="after">
|
||||
<div class="products_pager">
|
||||
<div class="row">
|
||||
<t t-call="website_sale.pricelist_list"/>
|
||||
<t t-call="website.pager"/>
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
|
||||
<!-- Remove original pager -->
|
||||
<xpath expr="//div[hasclass('products_pager')]" position="replace">
|
||||
</xpath>
|
||||
<xpath expr="//div[hasclass('oe_website_sale')]/div[hasclass('products_pager')]" position="replace">
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<!-- Rearrange product page -->
|
||||
<template id="product" inherit_id='website_sale.product' name="Product">
|
||||
<!-- Widen breadcrumb -->
|
||||
<xpath expr="//*[@id='wrap']//*[hasclass('row')]/*[1]" position="attributes">
|
||||
<attribute name="class">col-sm-12</attribute>
|
||||
</xpath>
|
||||
<!-- Move Published button -->
|
||||
<xpath expr="//*[@id='wrap']//*[hasclass('row')]/*[3]" position="attributes">
|
||||
<attribute name="class">col-sm-12</attribute>
|
||||
<attribute name="id">website_published_button</attribute>
|
||||
</xpath>
|
||||
<!-- Move search bar -->
|
||||
<xpath expr="//*[@id='wrap']//*[hasclass('row')]/*[2]" position="replace">
|
||||
</xpath>
|
||||
<xpath expr="//*[@id='wrap']//*[hasclass('row')]" position="before">
|
||||
<t t-call="theme_kea_sale.search"/>
|
||||
</xpath>
|
||||
|
||||
<!-- Move product name -->
|
||||
<xpath expr="//div[hasclass('col-lg-offset-1')]/h1" position="replace">
|
||||
</xpath>
|
||||
<xpath expr="//*[@id='website_published_button']" position="after">
|
||||
<div class="col-sm-12 product-title">
|
||||
<h1 itemprop="name" t-field="product.name">Product Name</h1>
|
||||
</div>
|
||||
</xpath>
|
||||
|
||||
<!-- Hide useless hr -->
|
||||
<xpath expr="//div[hasclass('col-lg-offset-1')]/hr" position="replace">
|
||||
</xpath>
|
||||
|
||||
<!-- New add to cart button -->
|
||||
<xpath expr="//a[@id='add_to_cart']" position="replace">
|
||||
<a id="add_to_cart" class="btn btn-primary btn-lg mt8 js_check_product a-submit center-block" href="#">
|
||||
<i class="fa fa-shopping-cart"/>
|
||||
Add to Cart
|
||||
</a>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<!-- Add class to recommended products -->
|
||||
<template id="recommended_products" inherit_id="website_sale.recommended_products" name="Alternative Products">
|
||||
<xpath expr="//div[hasclass('container')]" position="attributes">
|
||||
<attribute name='id'>website_sale_recommended_products</attribute>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<!-- Add h3 tag to the category list -->
|
||||
<template id="products_categories" inherit_id="website_sale.products_categories" active="True" customize_show="True" name="Product Categories">
|
||||
<xpath expr="//div[@id='products_grid_before']/ul" position="before">
|
||||
<h3 class="category-name">Product categories</h3>
|
||||
</xpath>
|
||||
<xpath expr="//div[@id='products_grid_before']" position="attributes">
|
||||
<attribute name="class">col-md-3 col-sm-4 hidden-xs</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//div[@id='products_grid']" position="attributes">
|
||||
<attribute name="class">col-md-9 col-sm-8</attribute>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<!-- Add h3 tag before filters -->
|
||||
<template id="products_filters" inherit_id="website_sale.products_attributes" name="Product Filters">
|
||||
<xpath expr="//form[hasclass('js_attributes')]" position="before">
|
||||
<h3 class="category-name">Product filters</h3>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<record id="website_sale.products_add_to_cart" model="ir.ui.view">
|
||||
<field name="active" eval='True'/>
|
||||
</record>
|
||||
|
||||
<record id="website_sale.products_categories" model="ir.ui.view">
|
||||
<field name="active" eval='True'/>
|
||||
</record>
|
||||
|
||||
<template id="search" name="search">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<t t-if="not keep">
|
||||
<form action="/shop" method="get" class="pagination form-inline col-md-12">
|
||||
<div class="input-group">
|
||||
<input name="search" class="search-query form-control" placeholder="Search..." type="text"/>
|
||||
<span class="input-group-btn">
|
||||
<a class="btn btn-default a-submit"><i class="fa fa-search"/></a>
|
||||
</span>
|
||||
</div>
|
||||
</form>
|
||||
</t>
|
||||
<t t-if="keep">
|
||||
<t t-call="website_sale.search">
|
||||
<t t-set="search_class">pagination form-inline col-md-12</t>
|
||||
</t>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</data>
|
||||
</openerp>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
<template id="less" name="/theme_kea_sale_less" inherit_id="website.assets_frontend">
|
||||
<xpath expr="//link[last()]" position="after">
|
||||
<link href="/theme_kea_sale/static/src/less/theme_ecommerce.less" rel="stylesheet" type="text/less"/>
|
||||
</xpath>
|
||||
</template>
|
||||
</data>
|
||||
</openerp>
|
||||
Reference in New Issue
Block a user