[ADD] theme 10.0
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,13 @@
|
||||
{
|
||||
'name': 'Theme Odoo Experts eCommerce Plugin',
|
||||
'description': 'Odoo Experts eCommerce Plugin',
|
||||
'category': 'Hidden',
|
||||
'sequence': 211,
|
||||
'version': '1.0',
|
||||
'author': 'Odoo S.A.',
|
||||
'depends': ['theme_loftspace_sale', 'theme_odoo_experts'],
|
||||
'demo': [
|
||||
'demo/products.xml',
|
||||
],
|
||||
'auto_install': True,
|
||||
}
|
||||
@@ -0,0 +1,232 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
|
||||
<!-- Delete loftspace categories -->
|
||||
<delete id="theme_loftspace_sale.living" model="product.public.category"/>
|
||||
<delete id="theme_loftspace_sale.sofa" model="product.public.category"/>
|
||||
<delete id="theme_loftspace_sale.armchair" model="product.public.category"/>
|
||||
<delete id="theme_loftspace_sale.cabinet" model="product.public.category"/>
|
||||
<delete id="theme_loftspace_sale.table" model="product.public.category"/>
|
||||
<delete id="theme_loftspace_sale.bedroom" model="product.public.category"/>
|
||||
<delete id="theme_loftspace_sale.bed" model="product.public.category"/>
|
||||
<delete id="theme_loftspace_sale.accessories" model="product.public.category"/>
|
||||
<delete id="theme_loftspace_sale.lamp" model="product.public.category"/>
|
||||
<delete id="theme_loftspace_sale.pillow" model="product.public.category"/>
|
||||
|
||||
<!-- Create new categories -->
|
||||
<record id="software" model="product.public.category">
|
||||
<field name="name">Softwares</field>
|
||||
</record>
|
||||
<record id="cms" model="product.public.category">
|
||||
<field name="parent_id" ref="software"/>
|
||||
<field name="name">CMS</field>
|
||||
</record>
|
||||
<record id="crm" model="product.public.category">
|
||||
<field name="parent_id" ref="software"/>
|
||||
<field name="name">CRM</field>
|
||||
</record>
|
||||
<record id="graphic_software" model="product.public.category">
|
||||
<field name="parent_id" ref="software"/>
|
||||
<field name="name">Graphic Softwares</field>
|
||||
</record>
|
||||
<record id="editors" model="product.public.category">
|
||||
<field name="parent_id" ref="software"/>
|
||||
<field name="name">Editors</field>
|
||||
</record>
|
||||
|
||||
<record id="info_product" model="product.public.category">
|
||||
<field name="name">Info Products</field>
|
||||
</record>
|
||||
<record id="email_marketing" model="product.public.category">
|
||||
<field name="parent_id" ref="info_product"/>
|
||||
<field name="name">Email Marketing</field>
|
||||
</record>
|
||||
<record id="google_adwords" model="product.public.category">
|
||||
<field name="parent_id" ref="info_product"/>
|
||||
<field name="name">Google Adwords</field>
|
||||
</record>
|
||||
<record id="google_analytics" model="product.public.category">
|
||||
<field name="parent_id" ref="info_product"/>
|
||||
<field name="name">Google Analytics</field>
|
||||
</record>
|
||||
<record id="social_networking" model="product.public.category">
|
||||
<field name="parent_id" ref="info_product"/>
|
||||
<field name="name">Social Networking</field>
|
||||
</record>
|
||||
<record id="facebook_campaign" model="product.public.category">
|
||||
<field name="parent_id" ref="info_product"/>
|
||||
<field name="name">Facebook Campaign</field>
|
||||
</record>
|
||||
<record id="twitter_campaign" model="product.public.category">
|
||||
<field name="parent_id" ref="info_product"/>
|
||||
<field name="name">Twitter Campaign</field>
|
||||
</record>
|
||||
|
||||
<!-- Delete loftspace products -->
|
||||
<delete id="theme_loftspace_sale.product_1" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_2" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_3" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_4" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_5" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_6" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_7" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_8" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_9" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_10" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_11" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_12" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_13" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_14" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_15" model="product.product"/>
|
||||
<delete id="theme_loftspace_sale.product_16" model="product.product"/>
|
||||
|
||||
<!-- Create new products -->
|
||||
<record id="product_1" model="product.product">
|
||||
<field name="name">CMS Software 1</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.cms')])]"/>
|
||||
<field name="list_price">299.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_01.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_2" model="product.product">
|
||||
<field name="name">CMS Software 2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.cms')])]"/>
|
||||
<field name="list_price">399.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_02.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_3" model="product.product">
|
||||
<field name="name">CRM Software 1</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.crm')])]"/>
|
||||
<field name="list_price">159.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_03.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_4" model="product.product">
|
||||
<field name="name">CRM Software 2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.crm')])]"/>
|
||||
<field name="list_price">259.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_04.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_5" model="product.product">
|
||||
<field name="name">Graphic Software 1</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.graphic_software')])]"/>
|
||||
<field name="list_price">499.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_05.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_6" model="product.product">
|
||||
<field name="name">Graphic Software 2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.graphic_software')])]"/>
|
||||
<field name="list_price">699.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_06.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_7" model="product.product">
|
||||
<field name="name">Editor Software</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.editors')])]"/>
|
||||
<field name="list_price">59.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_07.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_8" model="product.product">
|
||||
<field name="name">Email Marketing Info Product 1</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.email_marketing')])]"/>
|
||||
<field name="list_price">29.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_08.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_9" model="product.product">
|
||||
<field name="name">Email Marketing Info Product 2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.email_marketing')])]"/>
|
||||
<field name="list_price">33.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_09.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_10" model="product.product">
|
||||
<field name="name">Google Adwords Info Product 1</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.google_adwords')])]"/>
|
||||
<field name="list_price">39.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_10.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_11" model="product.product">
|
||||
<field name="name">Google Adwords Info Product 2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.google_adwords')])]"/>
|
||||
<field name="list_price">49.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_11.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_12" model="product.product">
|
||||
<field name="name">Google Analytics Info Product</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.google_analytics')])]"/>
|
||||
<field name="list_price">29.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_12.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_13" model="product.product">
|
||||
<field name="name">Social Network Info Product 1</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.social_networking')])]"/>
|
||||
<field name="list_price">59.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_13.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_14" model="product.product">
|
||||
<field name="name">Social Network Info Product 2</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.social_networking')])]"/>
|
||||
<field name="list_price">79.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_14.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_15" model="product.product">
|
||||
<field name="name">Facebook Info Product</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.facebook_campaign')])]"/>
|
||||
<field name="list_price">42.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_15.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
<record id="product_16" model="product.product">
|
||||
<field name="name">Twitter Info Product</field>
|
||||
<field name="public_categ_ids" eval="[(6,0,[ref('theme_odoo_experts_sale.twitter_campaign')])]"/>
|
||||
<field name="list_price">41.0</field>
|
||||
<field name="image" type="base64" file="theme_odoo_experts/static/src/img/content/product_img_16.jpg"/>
|
||||
<field name="website_published" eval="True"/>
|
||||
<field name="website_size_x">1</field>
|
||||
<field name="website_size_y">2</field>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
|
||||
</openerp>
|
||||
@@ -0,0 +1,176 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_odoo_experts_sale
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# darenkster <inactive+darenkster@transifex.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:55+0000\n"
|
||||
"PO-Revision-Date: 2017-03-24 12:55+0000\n"
|
||||
"Last-Translator: darenkster <inactive+darenkster@transifex.com>, 2017\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_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.cms
|
||||
msgid "CMS"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_1
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_1_product_template
|
||||
msgid "CMS Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_2
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_2_product_template
|
||||
msgid "CMS Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.crm
|
||||
msgid "CRM"
|
||||
msgstr "Kundenverwaltung"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_3
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_3_product_template
|
||||
msgid "CRM Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_4
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_4_product_template
|
||||
msgid "CRM Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_7
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_7_product_template
|
||||
msgid "Editor Software"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.editors
|
||||
msgid "Editors"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.email_marketing
|
||||
msgid "Email Marketing"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_8
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_8_product_template
|
||||
msgid "Email Marketing Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_9
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_9_product_template
|
||||
msgid "Email Marketing Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.facebook_campaign
|
||||
msgid "Facebook Campaign"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_15
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_15_product_template
|
||||
msgid "Facebook Info Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_adwords
|
||||
msgid "Google Adwords"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_10
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_10_product_template
|
||||
msgid "Google Adwords Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_11
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_11_product_template
|
||||
msgid "Google Adwords Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_analytics
|
||||
msgid "Google Analytics"
|
||||
msgstr "Google Analytics"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_12
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_12_product_template
|
||||
msgid "Google Analytics Info Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_5
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_5_product_template
|
||||
msgid "Graphic Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_6
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_6_product_template
|
||||
msgid "Graphic Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.graphic_software
|
||||
msgid "Graphic Softwares"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.info_product
|
||||
msgid "Info Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_13
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_13_product_template
|
||||
msgid "Social Network Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_14
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_14_product_template
|
||||
msgid "Social Network Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.social_networking
|
||||
msgid "Social Networking"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.software
|
||||
msgid "Softwares"
|
||||
msgstr "Programme"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.twitter_campaign
|
||||
msgid "Twitter Campaign"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_16
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_16_product_template
|
||||
msgid "Twitter Info Product"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,180 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_odoo_experts_sale
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2017
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2017
|
||||
# Luis M. Ontalba <luis.martinez@tecnativa.com>, 2017
|
||||
# e2f <projects@e2f.com>, 2018
|
||||
# Alejandro Pérez Torregrosa <alejandropereztorregrosa@gmail.com>, 2020
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-24 12:55+0000\n"
|
||||
"PO-Revision-Date: 2017-03-24 13:39+0000\n"
|
||||
"Last-Translator: Alejandro Pérez Torregrosa <alejandropereztorregrosa@gmail.com>, 2020\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_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.cms
|
||||
msgid "CMS"
|
||||
msgstr "CMS"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_1
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_1_product_template
|
||||
msgid "CMS Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_2
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_2_product_template
|
||||
msgid "CMS Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.crm
|
||||
msgid "CRM"
|
||||
msgstr "CRM"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_3
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_3_product_template
|
||||
msgid "CRM Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_4
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_4_product_template
|
||||
msgid "CRM Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_7
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_7_product_template
|
||||
msgid "Editor Software"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.editors
|
||||
msgid "Editors"
|
||||
msgstr "Editores"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.email_marketing
|
||||
msgid "Email Marketing"
|
||||
msgstr "Marketing por email"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_8
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_8_product_template
|
||||
msgid "Email Marketing Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_9
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_9_product_template
|
||||
msgid "Email Marketing Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.facebook_campaign
|
||||
msgid "Facebook Campaign"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_15
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_15_product_template
|
||||
msgid "Facebook Info Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_adwords
|
||||
msgid "Google Adwords"
|
||||
msgstr "Google Adwords"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_10
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_10_product_template
|
||||
msgid "Google Adwords Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_11
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_11_product_template
|
||||
msgid "Google Adwords Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_analytics
|
||||
msgid "Google Analytics"
|
||||
msgstr "Google Analytics"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_12
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_12_product_template
|
||||
msgid "Google Analytics Info Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_5
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_5_product_template
|
||||
msgid "Graphic Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_6
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_6_product_template
|
||||
msgid "Graphic Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.graphic_software
|
||||
msgid "Graphic Softwares"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.info_product
|
||||
msgid "Info Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_13
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_13_product_template
|
||||
msgid "Social Network Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_14
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_14_product_template
|
||||
msgid "Social Network Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.social_networking
|
||||
msgid "Social Networking"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.software
|
||||
msgid "Softwares"
|
||||
msgstr "Softwares"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.twitter_campaign
|
||||
msgid "Twitter Campaign"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_16
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_16_product_template
|
||||
msgid "Twitter Info Product"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,180 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_odoo_experts_sale
|
||||
#
|
||||
# Translators:
|
||||
# Olivier Lenoir <olivier.lenoir@free.fr>, 2017
|
||||
# Martin Trigaux, 2017
|
||||
# Nathan Noël <nathan070@me.com>, 2017
|
||||
# 6534c450c77b2549e41c52e2051f5839, 2017
|
||||
# e2f <projects@e2f.com>, 2018
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-24 12:55+0000\n"
|
||||
"PO-Revision-Date: 2017-03-24 13:39+0000\n"
|
||||
"Last-Translator: e2f <projects@e2f.com>, 2018\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_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.cms
|
||||
msgid "CMS"
|
||||
msgstr "CMS"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_1
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_1_product_template
|
||||
msgid "CMS Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_2
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_2_product_template
|
||||
msgid "CMS Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.crm
|
||||
msgid "CRM"
|
||||
msgstr "CRM"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_3
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_3_product_template
|
||||
msgid "CRM Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_4
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_4_product_template
|
||||
msgid "CRM Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_7
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_7_product_template
|
||||
msgid "Editor Software"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.editors
|
||||
msgid "Editors"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.email_marketing
|
||||
msgid "Email Marketing"
|
||||
msgstr "Marketing par e-mail"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_8
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_8_product_template
|
||||
msgid "Email Marketing Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_9
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_9_product_template
|
||||
msgid "Email Marketing Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.facebook_campaign
|
||||
msgid "Facebook Campaign"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_15
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_15_product_template
|
||||
msgid "Facebook Info Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_adwords
|
||||
msgid "Google Adwords"
|
||||
msgstr "Google Adwords"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_10
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_10_product_template
|
||||
msgid "Google Adwords Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_11
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_11_product_template
|
||||
msgid "Google Adwords Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_analytics
|
||||
msgid "Google Analytics"
|
||||
msgstr "Google Analytics"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_12
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_12_product_template
|
||||
msgid "Google Analytics Info Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_5
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_5_product_template
|
||||
msgid "Graphic Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_6
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_6_product_template
|
||||
msgid "Graphic Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.graphic_software
|
||||
msgid "Graphic Softwares"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.info_product
|
||||
msgid "Info Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_13
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_13_product_template
|
||||
msgid "Social Network Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_14
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_14_product_template
|
||||
msgid "Social Network Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.social_networking
|
||||
msgid "Social Networking"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.software
|
||||
msgid "Softwares"
|
||||
msgstr "Logiciels"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.twitter_campaign
|
||||
msgid "Twitter Campaign"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_16
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_16_product_template
|
||||
msgid "Twitter Info Product"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,178 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_odoo_experts_sale
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Eric Geens <ericgeens@yahoo.com>, 2017
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2017
|
||||
# Yenthe Van Ginneken <yenthespam@gmail.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:55+0000\n"
|
||||
"PO-Revision-Date: 2017-03-24 12:55+0000\n"
|
||||
"Last-Translator: Yenthe Van Ginneken <yenthespam@gmail.com>, 2017\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_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.cms
|
||||
msgid "CMS"
|
||||
msgstr "CMS"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_1
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_1_product_template
|
||||
msgid "CMS Software 1"
|
||||
msgstr "CMS Software 1"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_2
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_2_product_template
|
||||
msgid "CMS Software 2"
|
||||
msgstr "CMS Software 2"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.crm
|
||||
msgid "CRM"
|
||||
msgstr "Relatiebeheer"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_3
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_3_product_template
|
||||
msgid "CRM Software 1"
|
||||
msgstr "CRM Software 1"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_4
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_4_product_template
|
||||
msgid "CRM Software 2"
|
||||
msgstr "CRM Software 2"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_7
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_7_product_template
|
||||
msgid "Editor Software"
|
||||
msgstr "Editor software"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.editors
|
||||
msgid "Editors"
|
||||
msgstr "Editors"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.email_marketing
|
||||
msgid "Email Marketing"
|
||||
msgstr "E-mail marketing"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_8
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_8_product_template
|
||||
msgid "Email Marketing Info Product 1"
|
||||
msgstr "E-mail marketing informatie product 1"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_9
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_9_product_template
|
||||
msgid "Email Marketing Info Product 2"
|
||||
msgstr "E-mail marketing informatie product 2"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.facebook_campaign
|
||||
msgid "Facebook Campaign"
|
||||
msgstr "Facebook campagne"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_15
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_15_product_template
|
||||
msgid "Facebook Info Product"
|
||||
msgstr "Facebook info product"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_adwords
|
||||
msgid "Google Adwords"
|
||||
msgstr "Google Adwords"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_10
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_10_product_template
|
||||
msgid "Google Adwords Info Product 1"
|
||||
msgstr "Google Adwords info product 1"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_11
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_11_product_template
|
||||
msgid "Google Adwords Info Product 2"
|
||||
msgstr "Google Adwords info product 2"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_analytics
|
||||
msgid "Google Analytics"
|
||||
msgstr "Google Analytics"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_12
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_12_product_template
|
||||
msgid "Google Analytics Info Product"
|
||||
msgstr "Google Analytics info product"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_5
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_5_product_template
|
||||
msgid "Graphic Software 1"
|
||||
msgstr "Grafische software 1"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_6
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_6_product_template
|
||||
msgid "Graphic Software 2"
|
||||
msgstr "Grafische software 2"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.graphic_software
|
||||
msgid "Graphic Softwares"
|
||||
msgstr "Grafische software"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.info_product
|
||||
msgid "Info Products"
|
||||
msgstr "Info producten"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_13
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_13_product_template
|
||||
msgid "Social Network Info Product 1"
|
||||
msgstr "Sociale netwerk informatie product 1"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_14
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_14_product_template
|
||||
msgid "Social Network Info Product 2"
|
||||
msgstr "Sociale netwerk informatie product 2"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.social_networking
|
||||
msgid "Social Networking"
|
||||
msgstr "Sociaal netwerken"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.software
|
||||
msgid "Softwares"
|
||||
msgstr "Software"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.twitter_campaign
|
||||
msgid "Twitter Campaign"
|
||||
msgstr "Twitter campagne"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_16
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_16_product_template
|
||||
msgid "Twitter Info Product"
|
||||
msgstr "Twitter info product"
|
||||
@@ -0,0 +1,173 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_odoo_experts_sale
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-24 12:55+0000\n"
|
||||
"PO-Revision-Date: 2017-03-24 12:55+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_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.cms
|
||||
msgid "CMS"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_1
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_1_product_template
|
||||
msgid "CMS Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_2
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_2_product_template
|
||||
msgid "CMS Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.crm
|
||||
msgid "CRM"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_3
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_3_product_template
|
||||
msgid "CRM Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_4
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_4_product_template
|
||||
msgid "CRM Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_7
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_7_product_template
|
||||
msgid "Editor Software"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.editors
|
||||
msgid "Editors"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.email_marketing
|
||||
msgid "Email Marketing"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_8
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_8_product_template
|
||||
msgid "Email Marketing Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_9
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_9_product_template
|
||||
msgid "Email Marketing Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.facebook_campaign
|
||||
msgid "Facebook Campaign"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_15
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_15_product_template
|
||||
msgid "Facebook Info Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_adwords
|
||||
msgid "Google Adwords"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_10
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_10_product_template
|
||||
msgid "Google Adwords Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_11
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_11_product_template
|
||||
msgid "Google Adwords Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_analytics
|
||||
msgid "Google Analytics"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_12
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_12_product_template
|
||||
msgid "Google Analytics Info Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_5
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_5_product_template
|
||||
msgid "Graphic Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_6
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_6_product_template
|
||||
msgid "Graphic Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.graphic_software
|
||||
msgid "Graphic Softwares"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.info_product
|
||||
msgid "Info Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_13
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_13_product_template
|
||||
msgid "Social Network Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_14
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_14_product_template
|
||||
msgid "Social Network Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.social_networking
|
||||
msgid "Social Networking"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.software
|
||||
msgid "Softwares"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.twitter_campaign
|
||||
msgid "Twitter Campaign"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_16
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_16_product_template
|
||||
msgid "Twitter Info Product"
|
||||
msgstr ""
|
||||
|
||||
@@ -0,0 +1,179 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * theme_odoo_experts_sale
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2017
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2017
|
||||
# 老窦 北京 <2662059195@qq.com>, 2018
|
||||
# liAnGjiA <liangjia@qq.com>, 2018
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-24 12:55+0000\n"
|
||||
"PO-Revision-Date: 2017-03-24 13:39+0000\n"
|
||||
"Last-Translator: liAnGjiA <liangjia@qq.com>, 2018\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_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.cms
|
||||
msgid "CMS"
|
||||
msgstr "CMS"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_1
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_1_product_template
|
||||
msgid "CMS Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_2
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_2_product_template
|
||||
msgid "CMS Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.crm
|
||||
msgid "CRM"
|
||||
msgstr "CRM"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_3
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_3_product_template
|
||||
msgid "CRM Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_4
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_4_product_template
|
||||
msgid "CRM Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_7
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_7_product_template
|
||||
msgid "Editor Software"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.editors
|
||||
msgid "Editors"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.email_marketing
|
||||
msgid "Email Marketing"
|
||||
msgstr "Email 市场营销"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_8
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_8_product_template
|
||||
msgid "Email Marketing Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_9
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_9_product_template
|
||||
msgid "Email Marketing Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.facebook_campaign
|
||||
msgid "Facebook Campaign"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_15
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_15_product_template
|
||||
msgid "Facebook Info Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_adwords
|
||||
msgid "Google Adwords"
|
||||
msgstr "Google Adwords"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_10
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_10_product_template
|
||||
msgid "Google Adwords Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_11
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_11_product_template
|
||||
msgid "Google Adwords Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.google_analytics
|
||||
msgid "Google Analytics"
|
||||
msgstr "Google 分析"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_12
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_12_product_template
|
||||
msgid "Google Analytics Info Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_5
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_5_product_template
|
||||
msgid "Graphic Software 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_6
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_6_product_template
|
||||
msgid "Graphic Software 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.graphic_software
|
||||
msgid "Graphic Softwares"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.info_product
|
||||
msgid "Info Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_13
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_13_product_template
|
||||
msgid "Social Network Info Product 1"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_14
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_14_product_template
|
||||
msgid "Social Network Info Product 2"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.social_networking
|
||||
msgid "Social Networking"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.software
|
||||
msgid "Softwares"
|
||||
msgstr "软件"
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.public.category,name:theme_odoo_experts_sale.twitter_campaign
|
||||
msgid "Twitter Campaign"
|
||||
msgstr ""
|
||||
|
||||
#. module: theme_odoo_experts_sale
|
||||
#: model:product.product,name:theme_odoo_experts_sale.product_16
|
||||
#: model:product.template,name:theme_odoo_experts_sale.product_16_product_template
|
||||
msgid "Twitter Info Product"
|
||||
msgstr ""
|
||||
Reference in New Issue
Block a user